10 lines
110 B
C++
10 lines
110 B
C++
#ifndef GLOBAL_H
|
|
|
|
#include <string>
|
|
|
|
void trim(char * s);
|
|
void trim(std::string &s);
|
|
|
|
#define GLOBAL_H
|
|
#endif
|