#include <string.h>
#include <ctype.h>
#include "strlib.h"
Functions | |
char * | strlwc (const char *s) |
Convert a string to lowercase. | |
char * | strupc (char *s) |
Convert a string to uppercase. | |
char * | strskp (char *s) |
Skip blanks until the first non-blank character. | |
char * | strcrop (char *s) |
Remove blanks at the end of a string. | |
char * | strstrip (char *s) |
Remove blanks at the beginning and the end of a string. |
char* strcrop | ( | char * | s | ) |
Remove blanks at the end of a string.
s | String to parse. |
char* strlwc | ( | const char * | s | ) |
Convert a string to lowercase.
s | String to convert. |
char* strskp | ( | char * | s | ) |
Skip blanks until the first non-blank character.
s | String to parse. |
char* strstrip | ( | char * | s | ) |
Remove blanks at the beginning and the end of a string.
s | String to parse. |
char* strupc | ( | char * | s | ) |
Convert a string to uppercase.
s | String to convert. |