Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/fnmatch.c

    rf215bb5 ra12f7f1  
    525525static char *_casefold(const char *s)
    526526{
    527         assert(s != NULL);
    528527        char *result = strdup(s);
    529528        for (char *i = result; *i != '\0'; ++i) {
     
    543542int posix_fnmatch(const char *pattern, const char *string, int flags)
    544543{
    545         assert(pattern != NULL);
    546         assert(string != NULL);
    547 
    548544        // TODO: don't fold everything in advance, but only when needed
    549545
Note: See TracChangeset for help on using the changeset viewer.