avr-crypto-lib/cli.h

14 lines
308 B
C
Raw Normal View History

2008-04-08 06:41:15 +00:00
#ifndef CLI_H_
#define CLI_H_
#include <stdint.h>
#include <avr/pgmspace.h>
2008-04-20 02:36:13 +00:00
typedef void(*void_fpt)(void);
2008-04-08 06:41:15 +00:00
int16_t findstring_d0(const char* str, const char* v);
int16_t findstring_d0_P(const char* str, PGM_P v);
int16_t execcommand_d0_P(const char* str, PGM_P v, void(*fpt[])(void) );
#endif /*CLI_H_*/