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