1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-26 17:46:14 +01:00
CommandStation-EX/StringParser.h

18 lines
269 B
C
Raw Normal View History

2020-05-24 20:59:49 +02:00
#ifndef CommParser_h
#define CommParser_h
#include <Arduino.h>
const int MAX_PARAMS=8;
struct StringParser
{
static void init();
static void parse(const char *);
private:
static int parse(const char *, byte);
static int p[MAX_PARAMS];
};
#endif