Skip to content

Commit a50ea7f

Browse files
author
Espressif Systems
committed
add putchar and puts, related lib has been pushed to esp_iot_rtos_sdk_lib.
reported by latyas.
1 parent 1ea8c2f commit a50ea7f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

include/espressif/esp_libc.h

+2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ void srand(unsigned int i);
3737
int printf(const char *format, ...);
3838
int sprintf(char *out, const char *format, ...);
3939
int snprintf(char *buf, unsigned int count, const char *format, ...);
40+
int puts(const char *str);
41+
int putchar(int c);
4042

4143
void *malloc(size_t n);
4244
void free(void *p);

0 commit comments

Comments
 (0)