00001 #ifndef _STR_H_ 00002 00003 #define _STR_H_ 00004 00005 #include <string.h> 00006 00007 /** 00008 * \file str.h Prototipos de operações com strings. 00009 */ 00010 00011 int str_compare(const void*, const void*); 00012 char* str_clone(const char*); 00013 int str_hash_code(char*); 00014 void str_destroy(void*); 00015 void str_trim(char*); 00016 void str_to_lower(char*); 00017 void str_to_upper(char*); 00018 void str_remove_tags(char*); 00019 00020 #endif
1.4.6