8 lines
187 B
C++
8 lines
187 B
C++
#ifndef HELPERS_H
|
|
#define HELPERS_H
|
|
#include <string>
|
|
|
|
extern char * strip_eol (char * str);
|
|
extern std::string ing_fmt (const double par, const unsigned dnum = 3u);
|
|
|
|
#endif // HELPERS_H
|