|
Qualia
0.2
|


Go to the source code of this file.
Functions | |
| char * | strBaseName (char *filename) |
| char * | strRemoveSuffix (char *filename, char c='.') |
| char * | strConcat (int n,...) |
| char* strBaseName | ( | char * | filename | ) |
Some simple functions for string operations.
| char* strConcat | ( | int | n, |
| ... | |||
| ) |
Returns the concatenation #n# strings. The strings are the parameters given after #n#; You have to free the memory!
| char* strRemoveSuffix | ( | char * | filename, |
| char | c = '.' |
||
| ) |
Returns a fresh copy of the name of a file without suffix. (Trailing chars after c) You have to free the memory!
1.8.3.1