2018-01-28 18:30:49 +00:00
|
|
|
/*******************************************************
|
|
|
|
* stringx - Extended String Handling Routines for C02 *
|
|
|
|
*******************************************************/
|
|
|
|
|
|
|
|
/* Find Span of Characters not matching String *
|
|
|
|
* Args: &s - String of characters to match *
|
2020-10-11 18:45:01 +00:00
|
|
|
* Uses: String to parse specified by setdst() *
|
2018-01-28 18:30:49 +00:00
|
|
|
* Sets: temp1 - Result *
|
|
|
|
* Returns: Number of consecutive characters in *
|
|
|
|
* Destination that are not in Source */
|
|
|
|
char strbrk();
|
|
|
|
char strcsp(); //Alias
|
|
|
|
|
2020-10-11 18:45:01 +00:00
|
|
|
/* Find Span of Characters matching String *
|
|
|
|
* Setup: setdst(s) - String to Search *
|
|
|
|
* Args: int &m - String to match *
|
|
|
|
* Returns: Number of consecutive characters *
|
|
|
|
* in m that are also in s */
|
2018-01-28 18:30:49 +00:00
|
|
|
char strspn();
|
|
|
|
|
|
|
|
/* Find First Character matching String *
|
|
|
|
* Args: &s - String of characters to match *
|
2020-10-11 18:45:01 +00:00
|
|
|
* Uses: String to parse specified by setdst() *
|
2018-01-28 18:30:49 +00:00
|
|
|
* Sets: temp1 - Result *
|
|
|
|
* Returns: Position of first character in *
|
|
|
|
* Destination that is also in Source *
|
|
|
|
* $FF if not found */
|
|
|
|
char strpbk();
|
|
|
|
|