Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/psx/mednadisc/string/trim.h
2 views
1
#ifndef __MDFN_STRING_TRIM_H
2
#define __MDFN_STRING_TRIM_H
3
4
void MDFN_ltrim(char *string);
5
void MDFN_rtrim(char *string);
6
void MDFN_trim(char *string);
7
8
void MDFN_ltrim(std::string &string);
9
void MDFN_rtrim(std::string &string);
10
void MDFN_trim(std::string &string);
11
12
char *MDFN_RemoveControlChars(char *str);
13
14
#endif
15
16