3 #if !defined(STRING_H_INCLUDED) 4 #define STRING_H_INCLUDED 1 20 #endif // !defined(STRING_H_INCLUDED) void String__free(String_Const string)
will free memory assciated with string.
char * String
Copyright (c) 2013-2014 by Wayne C. Gramlich. All rights reserved.
unsigned int String__to_unsigned(String_Const string)
Converts from decimal string into a number and return it.
const char * String_Const
unsigned int String__size(String_Const string)
Returns the size of string.
bool String__equal(String_Const string1, String_Const string2)
Returns true if string1 equals string2.
String String__allocate(unsigned int size)
Allocate and return for size characters.
String String__format(String_Const format,...)
Return a formatted version of format.