mirror of
https://github.com/oliverschmidt/contiki.git
synced 2025-02-10 16:31:41 +00:00
87cd9c7a36
program you are building. update tests to consolidate common code.
11 lines
157 B
C
11 lines
157 B
C
#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
|