mirror of
https://github.com/RobCo-Industries/Pip-OS.git
synced 2026-08-24 02:24:20 -05:00
19 lines
258 B
C
19 lines
258 B
C
#ifndef __STRING_H__
|
|
#define __STRING_H__
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
uint32_t strlen(char * s);
|
|
|
|
void *memcpy(void *dest, const void * src, size_t n);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __STRING_H__
|