1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2025-02-17 06:29:15 +01:00
CommandStation-EX/StringParser.h

7 lines
126 B
C
Raw Normal View History

2020-05-24 20:59:49 +02:00
#include <Arduino.h>
2020-05-25 14:38:18 +02:00
class StringParser
2020-05-24 20:59:49 +02:00
{
2020-05-25 14:38:18 +02:00
public:
static int parse(const char * com, int result[], byte maxResults);
2020-05-24 20:59:49 +02:00
};