00001
00002
00003
00004
00005
00006
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
00025 int memcmp(const void *s1, const void *s2, int n);
00026
00027 #endif