-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
370 additions
and
184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/** | ||
* \file YCommandExec.h | ||
* \brief Yipies Command Parser. | ||
*/ | ||
|
||
/* -------------------------- Development history -------------------------- */ | ||
/* | ||
* 2020.04.17 DaBa v1.0.00 Initial version | ||
*/ | ||
|
||
/* -------------------------------- Authors -------------------------------- */ | ||
/* | ||
* DaBa Dario Balina [email protected] | ||
*/ | ||
|
||
/* --------------------------------- Notes --------------------------------- */ | ||
/* --------------------------------- Module -------------------------------- */ | ||
#ifndef __YCOMMANDEXEC_H__ | ||
#define __YCOMMANDEXEC_H__ | ||
|
||
/* ----------------------------- Include files ----------------------------- */ | ||
#include "YCommandParser.h" | ||
|
||
/* ---------------------- External C language linkage ---------------------- */ | ||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
/* --------------------------------- Macros -------------------------------- */ | ||
/* -------------------------------- Constants ------------------------------ */ | ||
/* ------------------------------- Data types ------------------------------ */ | ||
/* -------------------------- External variables --------------------------- */ | ||
/* -------------------------- Function prototypes -------------------------- */ | ||
YCmdRes YCommand_exec(YCmdParserData *pcmd); | ||
|
||
/* -------------------- External C language linkage end -------------------- */ | ||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
/* ------------------------------ Module end ------------------------------- */ | ||
#endif | ||
|
||
/* ------------------------------ End of file ------------------------------ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/** | ||
* \file YCommandFormat.h | ||
* \brief Yipies Command Format. | ||
*/ | ||
|
||
/* -------------------------- Development history -------------------------- */ | ||
/* | ||
* 2020.04.17 DaBa v1.0.00 Initial version | ||
*/ | ||
|
||
/* -------------------------------- Authors -------------------------------- */ | ||
/* | ||
* DaBa Dario Balina [email protected] | ||
*/ | ||
|
||
/* --------------------------------- Notes --------------------------------- */ | ||
/* --------------------------------- Module -------------------------------- */ | ||
#ifndef __YCOMMANDFORMAT_H__ | ||
#define __YCOMMANDFORMAT_H__ | ||
|
||
/* ----------------------------- Include files ----------------------------- */ | ||
#include "YCommand.h" | ||
#include "YCommandParser.h" | ||
|
||
/* ---------------------- External C language linkage ---------------------- */ | ||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
/* --------------------------------- Macros -------------------------------- */ | ||
/* -------------------------------- Constants ------------------------------ */ | ||
/* ------------------------------- Data types ------------------------------ */ | ||
/* -------------------------- External variables --------------------------- */ | ||
/* -------------------------- Function prototypes -------------------------- */ | ||
YCmdRes YCommandFormat_format(YCmdParserData *pCmd, char *p); | ||
|
||
/* -------------------- External C language linkage end -------------------- */ | ||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
/* ------------------------------ Module end ------------------------------- */ | ||
#endif | ||
|
||
/* ------------------------------ End of file ------------------------------ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.