Ignore:
Timestamp:
Jun 5, 2002, 12:24:01 PM (23 years ago)
Author:
umoeller
Message:

Removed animouseptr, some more fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/stringh.c

    r164 r169  
    113113        *pulLength = ulLength;
    114114
    115     return (NO_ERROR);
     115    return NO_ERROR;
    116116}
    117117
     
    160160        *pulLength = ulLength;
    161161
    162     return (NO_ERROR);
     162    return NO_ERROR;
    163163}
    164164
     
    18011801         || (shift == NULL)
    18021802       )
    1803         return (NULL);
     1803        return NULL;
    18041804
    18051805    //  Pattern must be smaller or equal in size to string
    18061806    if (block_size < pattern_size)
    1807         return (NULL);                  //  Otherwise it's not found
     1807        return NULL;                  //  Otherwise it's not found
    18081808
    18091809    if (pattern_size == 0)              //  Empty patterns match at start
     
    18581858        }
    18591859    }
    1860     return (NULL);                      //  Found nothing
     1860    return NULL;                      //  Found nothing
    18611861}
    18621862
     
    19021902    ASSERT (pattern);                   //  fail gracefully if not debugging
    19031903    if (string == NULL || pattern == NULL)
    1904         return (NULL);
     1904        return NULL;
    19051905
    19061906    string_size  = strlen (string);
     
    19091909    //  Pattern must be smaller or equal in size to string
    19101910    if (string_size < pattern_size)
    1911         return (NULL);                  //  Otherwise it cannot be found
     1911        return NULL;                  //  Otherwise it cannot be found
    19121912
    19131913    if (pattern_size == 0)              //  Empty string matches at start
     
    19531953          }
    19541954      }
    1955     return (NULL);                      //  Found nothing
    1956 }
    1957 
     1955    return NULL;                      //  Found nothing
     1956}
     1957
Note: See TracChangeset for help on using the changeset viewer.