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:
parent
e4a18c5574
commit
b3e0ba59e5
2 changed files with 9 additions and 9 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue