summaryrefslogtreecommitdiff
path: root/src/string.h
blob: 5efd35a7eef178df30f934c30214faeaa7a303e8 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef STRING_H
#define STRING_H

#include "sys/types.h"

void *memset( void *s, int c, size_t n );
void *memmove( void *d, const void *s, size_t n );
size_t strlen( const char *s );

#endif /* STRING_H */