1
0
Fork 0

change const char * to char * for the trim functions

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1872
This commit is contained in:
Sjoerd van der Berg 2004-07-05 12:00:26 +00:00
parent e4a18c5574
commit b3e0ba59e5
2 changed files with 9 additions and 9 deletions

View file

@ -38,9 +38,9 @@
#endif
void strreplace(char * str,char o,char n);
char *ltrim(const char *str);
char *rtrim(const char *str);
char *trim(const char *str);
char *ltrim(char *str);
char *rtrim(char *str);
char *trim(char * str);
bool ScanCMDBool(char * cmd,char * check);
char * ScanCMDRemain(char * cmd);