[BACK]Return to string.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/string.h between version 1.23 and 1.24

version 1.23, 2012/01/17 02:48:01 version 1.24, 2012/03/25 20:04:18
Line 107 
Line 107 
 char    *strdup(const char *);  char    *strdup(const char *);
 #endif  #endif
   
 #if __BSD_VISIBLE || __XPG_VISIBLE >= 600  #if __BSD_VISIBLE || __POSIX_VISIBLE >= 200112
 int      strerror_r(int, char *, size_t)  int      strerror_r(int, char *, size_t)
             __attribute__ ((__bounded__(__string__,2,3)));              __attribute__ ((__bounded__(__string__,2,3)));
 #endif  #endif
Line 119 
Line 119 
 size_t   strnlen(const char *, size_t);  size_t   strnlen(const char *, size_t);
 #endif  #endif
   
   #if __BSD_VISIBLE || __POSIX_VISIBLE >= 200809
   char    *strsignal(int);
   #endif
   
 #if __BSD_VISIBLE  #if __BSD_VISIBLE
 char    *strcasestr(const char *, const char *);  char    *strcasestr(const char *, const char *);
 size_t   strlcat(char *, const char *, size_t)  size_t   strlcat(char *, const char *, size_t)
Line 127 
Line 131 
                 __attribute__ ((__bounded__(__string__,1,3)));                  __attribute__ ((__bounded__(__string__,1,3)));
 void     strmode(int, char *);  void     strmode(int, char *);
 char    *strsep(char **, const char *);  char    *strsep(char **, const char *);
 char    *strsignal(int);  
 int      timingsafe_bcmp(const void *, const void *, size_t);  int      timingsafe_bcmp(const void *, const void *, size_t);
 #endif  #endif
 __END_DECLS  __END_DECLS

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24