Ignore:
Timestamp:
Aug 6, 2017, 8:33:00 AM (7 years ago)
Author:
max@…
Message:

Clean up, and define strstr() in libk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kernel/libk/string.h

    r238 r323  
    103103
    104104/********************************************************************************************
     105 * This function locates the first occurence of the <find> string in the <s> string.
     106 ********************************************************************************************
     107 * @ s     : string to be analysed.
     108 * @ find  : searched string
     109 * @ return pointer on the found string / return NULL if not found.
     110 *******************************************************************************************/
     111char * strstr( char       * s,
     112               const char * find);
     113
     114/********************************************************************************************
    105115 * This function locates the first occurence of the <c> character in the <s> string.
    106116 ********************************************************************************************
Note: See TracChangeset for help on using the changeset viewer.