string.h

Go to the documentation of this file.
00001 /* string.h */
00002 
00003 #ifndef __ROUTIX_TYPES
00004 #include <sys/types.h>
00005 #endif
00006 
00007 
00008 int strcmp(const char *s1, const char *s2);
00009 char *strcpy (char *dest, const char *src); 
00010 char *strcat(char *dest, char *src);
00011 size_t strlen(const char *s);
00012 char *strncpy (char *dest, const char *src, size_t nbytes); 
00013 
00014 char *str_to_upper (char *str);
00015 char *str_to_lower (char *str);
00016 int tolower(int c);
00017 int toupper(int c);
00018 
00019 int memcmp ( const void *s1, const void *s2, dword n);
00020 void *memcpy ( void *dest, const void *src, dword n);
00021 void *memset(void *s, int c, size_t n);
00022 
00023 // Esto deberķa ir en stdlib.h
00024 int atoi(const char *str);

Generated on Sun May 30 18:38:35 2004 for Routix OS by doxygen 1.3.6