view include/string.h @ 97:917b70f168b0

Some minor bug fixes string.h now defines __STRING_H Removed unneeded operations.h from dynamic test program Added string.h header to the filesystem, needed for memcpy The code for deleting files now copies the correct direntry Removed a duplicate line from the filesystem test prompt
author Jonathan Pevarnek <pevarnj@gmail.com>
date Sat, 14 May 2011 16:47:35 -0400
parents 191e99dffd6c
children 2a0aa3efc228
line wrap: on
line source

#ifndef __STRING_H
#define __STRING_H

void strcpy(char *dest, const char *src);
int strcmp(const char *a, const char *b);
char* strcat(char *dest, const char *src);
void* memcpy(void *destination, const void *source, size_t num);
size_t strlen(const char *str);

#endif