osd-contiki/lib/include/put.h
2010-03-02 09:51:58 -05:00

11 lines
161 B
C

#ifndef PUT_H
#define PUT_H
void putchr(char c);
void putstr(char *s);
void put_hex(uint8_t x);
void put_hex16(uint16_t x);
void put_hex32(uint32_t x);
#endif