![]() |
FirstNonblank | Function (ROM Call 0x4DE) |
AMS 2.00 or higher | string.h |
unsigned char *FirstNonblank (unsigned char *s); |
Returns a pointer to the first nonblank character in given string.
This function is very limited: it simply searches the string s for blank characters (space, code 0x20), and returns when it finds a character different from 0x20.
Note that FirstNonBlank is available only on AMS 2.xx, and that using FirstNonBlank instead of writing the equivalent code in your program is slower, less flexible and can be bigger !