9 lines
151 B
C
9 lines
151 B
C
![]() |
#ifndef _OSWALD_STRINGS_H
|
||
|
#define _OSWALD_STRINGS_H
|
||
|
|
||
|
uint16_t oswald_strlen(char *string);
|
||
|
char* itoa(int16_t value, char* result, int base);
|
||
|
|
||
|
#endif
|
||
|
|