Files
Pip-OS/include/string.h
T
2019-11-29 21:40:59 -05:00

9 lines
137 B
C

#ifndef __STRING_H__
#define __STRING_H__
#include <stdint.h>
uint32_t strlen(char * s);
void strrev(char * s);
#endif // __STRING_H__