mirror of
https://github.com/RobCo-Industries/Pip-OS.git
synced 2026-08-24 10:04:26 -05:00
9 lines
137 B
C
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__
|