mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-04 21:05:02 +00:00
31 lines
1.2 KiB
Plaintext
31 lines
1.2 KiB
Plaintext
/*******************************************************
|
|
* stringx - Extended String Handling Routines for C02 *
|
|
*******************************************************/
|
|
|
|
/* Find Span of Characters not matching String *
|
|
* Args: &s - String of characters to match *
|
|
* Uses: String to parse specified by strdst() *
|
|
* Sets: temp1 - Result *
|
|
* Returns: Number of consecutive characters in *
|
|
* Destination that are not in Source */
|
|
char strbrk();
|
|
char strcsp(); //Alias
|
|
|
|
/* Find Span of Characters matching String *
|
|
* Args: &s - String of characters to match *
|
|
* Uses: String to parse specified by strdst() *
|
|
* Sets: temp1 - Result *
|
|
* Returns: Number of consecutive characters in *
|
|
* Destination that are also in Source */
|
|
char strspn();
|
|
|
|
/* Find First Character matching String *
|
|
* Args: &s - String of characters to match *
|
|
* Uses: String to parse specified by strdst() *
|
|
* Sets: temp1 - Result *
|
|
* Returns: Position of first character in *
|
|
* Destination that is also in Source *
|
|
* $FF if not found */
|
|
char strpbk();
|
|
|