10 lines
139 B
C
10 lines
139 B
C
|
#ifndef DOS2UNIX_H
|
||
|
#define DOS2UNIX_H
|
||
|
#include <string>
|
||
|
class Dos2Unix
|
||
|
{
|
||
|
public:
|
||
|
static void run(std::string& s);
|
||
|
};
|
||
|
#endif
|