contiki/libmc1322x/include/put.h

11 lines
157 B
C
Raw Normal View History

2010-02-26 23:13:21 +00:00
#ifndef PUT_H
#define PUT_H
void putc(char c);
void puts(char *s);
void put_hex(uint8_t x);
void put_hex16(uint16_t x);
void put_hex32(uint32_t x);
#endif