Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2012-02-24 | replace prototype for basename in string.h with non-prototype declaration | Rich Felker | -1/+1 | |
GNU programs may expect the GNU version of basename, which has a different prototype (argument is const-qualified) and prototype it themselves too. of course if they're expecting the GNU behavior for the function, they'll still run into problems, but at least this eliminates some compile-time failures. | ||||
2012-02-07 | declare basename in string.h when _GNU_SOURCE is defined | Rich Felker | -0/+1 | |
note that it still will have the standards-conformant behavior, not the GNU behavior. but at least this prevents broken code from ending up with truncated pointers due to implicit declarations... | ||||
2012-02-06 | more locale_t interfaces (string stuff) and header updates | Rich Felker | -0/+8 | |
this should be everything except for some functions where the non-_l version isn't even implemented yet (mainly some non-ISO-C wcs* functions). | ||||
2011-09-11 | add dummied strverscmp (obnoxious GNU function) | Rich Felker | -0/+1 | |
programs that use this tend to horribly botch international text support, so it's questionable whether we want to support it even in the long term... for now, it's just a dummy that calls strcmp. | ||||
2011-04-26 | function signature fix: add const qualifier to mempcpy src arg | Rich Felker | -1/+1 | |
2011-04-26 | typo in prototype for mempcpy | Rich Felker | -1/+1 | |
2011-04-26 | prototype for mempcpy | Rich Felker | -0/+1 | |
2011-04-13 | implement memrchr (nonstandard) and optimize strrchr in terms of it | Rich Felker | -0/+1 | |
2011-04-06 | fix prototype for strsep | Rich Felker | -1/+1 | |
2011-03-30 | add some missing prototypes for nonstandard functions (strsep, clearenv) | Rich Felker | -0/+1 | |
2011-02-26 | fix missing prototype for strsignal | Rich Felker | -0/+1 | |
2011-02-24 | apply feature test protection to memccpy | Rich Felker | -1/+4 | |
2011-02-15 | prototype for gnu strcasestr (currently a stub) | Rich Felker | -0/+1 | |
2011-02-14 | more header cleanup and conformance fixes - string.h | Rich Felker | -7/+12 | |
2011-02-12 | initial check-in, version 0.5.0v0.5.0 | Rich Felker | -0/+72 | |