Woolz Image Processing
Version 1.7.5
|
Files | |
file | AlcString.c |
Provides functions for string duplication. | |
Functions | |
char * | AlcStrDup (const char *srcStr) |
Allocates space for and duplicates the given NULL terminated character string. More... | |
char * | AlcStrCat3 (const char *s0, const char *s1, const char *s2) |
Concatonates the three given strings in order into a new allocated string buffer. If all strings are null or zero length then NULL is returned, otherwise if a string is null it is omitted. More... | |
unsigned int | AlcStrSFHash (const char *str) |
A hash function for strings based on Paul Hsieh's SuperFastHash function which is covered by the LGPL 2.1 license amongst others. The returned value will always be zero if the given string is null of has zero length. More... | |
char* AlcStrDup | ( | const char * | srcStr | ) |
Allocates space for and duplicates the given NULL terminated character string.
srcStr | Given string. |
References AlcMalloc().
Referenced by BibFileEscapeRestrictedChar(), BibFileFieldError(), BibFileFieldMake(), BibFileFieldParseFmt(), BibFileRecordError(), BibFileRecordMake(), BibFileStrRead(), BibFileUnEscapeRestrictedChar(), main(), WlzChangeEMAPProperty(), WlzEffBibParseFileRecord(), WlzEffWriteObjAm(), WlzEffWriteObjNrrd(), WlzMakeEMAPProperty(), WlzMakeGreyProperty(), WlzMakeNameProperty(), WlzMakeTextProperty(), and WlzStringCopyReplace().
char* AlcStrCat3 | ( | const char * | s0, |
const char * | s1, | ||
const char * | s2 | ||
) |
Concatonates the three given strings in order into a new allocated string buffer. If all strings are null or zero length then NULL is returned, otherwise if a string is null it is omitted.
s0 | First string. |
s1 | Second string. |
s2 | Third string. |
References AlcMalloc().
unsigned int AlcStrSFHash | ( | const char * | str | ) |
A hash function for strings based on Paul Hsieh's SuperFastHash function which is covered by the LGPL 2.1 license amongst others. The returned value will always be zero if the given string is null of has zero length.
str | Given string. |