Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1172 → Rev 1173

/uspace/trunk/libc/include/string.h
30,7 → 30,11
#ifndef __LIBC__STRING_H__
#define __LIBC__STRING_H__
 
#include <types.h>
 
void * memset(void *s, int c, size_t n);
void * memcpy(void *dest, void *src, size_t n);
 
size_t strlen(const char *str);
 
#endif