removed most mbed.h includes
[clinton/Smoothieware.git] / src / libs / utils.h
CommitLineData
4eb9c745
AW
1#ifndef utils_h
2#define utils_h
3
423df6df
AW
4#include <stdint.h>
5using namespace std;
4eb9c745
AW
6#include <string>
7using std::string;
4eb9c745
AW
8
9string lc(string str);
10
a699b669
AW
11string remove_non_number( string str );
12
4eb9c745
AW
13uint16_t get_checksum(string to_check);
14
15string shift_parameter( string &parameters );
16
cebe90b6
AW
17string get_arguments( string possible_command );
18
4eb9c745
AW
19
20
21
22
23
24#endif