Main Page | Modules | Data Structures | Directories | File List | Data Fields | Globals | Related Pages

string.h

Go to the documentation of this file.
00001 /* ndk - [ string.h ]
00002  *
00003  * libc string functions used by kernel
00004  *
00005  * (c)2004 dcipher / neuraldk
00006  *           www.neuraldk.org
00007  */
00008 
00009 #ifndef __ndk_string_h__
00010 #define __ndk_string_h__
00011 
00012 #include <stddef.h>
00013 
00014 int strncmp(char *s1, char *s2, long n);
00015 int strcmp(char *s1, char *s2);
00016 char *strcpy(char *dest, const char *src);
00017 char *strncpy(char *s1, const char *s2, int n);
00018 size_t strlen(const char *s);
00019 char *strchr(const char *s, int c);
00020 
00021 void *memcpy(void *dst0, void *src0, long size);
00022 void *memset(void *dst, int c, int n);
00023 
00024 //int memcmp( const void * s1, const void * s2, size_t n );
00025 int memcmp(const void *s1, const void *s2, int n);
00026 
00027 #endif

Generated on Wed Mar 22 20:36:33 2006 for ndk by  doxygen 1.4.4