00001 /** 00002 * @file StringFunctions.h 00003 * 00004 * Declaration of common string functions 00005 * 00006 * @author Uwe Düffert 00007 */ 00008 00009 #ifndef __StringFunctions_h_ 00010 #define __StringFunctions_h_ 00011 00012 /** 00013 * converts a string to our xml format, eg kickLeft or kick-left to kick-left 00014 * @param src pointer to source char* to be converted 00015 * @param dstXml pointer to buffer to write return value to 00016 */ 00017 void getXmlString(char* dstXml, const char* src); 00018 void getYabslString(char* dstYabsl, const char* src); 00019 00020 #endif // __StringFunctions_h_
1.3.6