|
APBS 3.0.0
|
Provides a collection of useful non-ANSI string functions. More...
Files | |
| file | vstring.c |
| Class Vstring methods. | |
| file | vstring.h |
| Contains declarations for class Vstring. | |
Functions | |
| char * | Vstring_wrappedtext (const char *str, int right_margin, int left_padding) |
| VEXTERNC int | Vstring_strcasecmp (const char *s1, const char *s2) |
| Case-insensitive string comparison (BSD standard). | |
| VEXTERNC int | Vstring_isdigit (const char *tok) |
| A modified sscanf that examines the complete string. | |
Provides a collection of useful non-ANSI string functions.
| VEXTERNC int Vstring_isdigit | ( | const char * | tok | ) |
| VEXTERNC int Vstring_strcasecmp | ( | const char * | s1, |
| const char * | s2 ) |
Case-insensitive string comparison (BSD standard).
| s1 | First string for comparison |
| s2 | Second string for comparison |
| VEXTERNC char * Vstring_wrappedtext | ( | const char * | str, |
| int | right_margin, | ||
| int | left_padding ) |
Creates a wrapped and indented string from an input string
Creates a wrapped and indented string from an input string
| str | The input string to wrap and indent |
| right_margin | The number of characters to the right margin |
| left_padding | The number of characters in the left indent |