[Assignmnt-7] rename directory
This commit is contained in:
parent
f9b49a2119
commit
d2f1a1e04b
36 changed files with 0 additions and 0 deletions
23
Assignment 7 - SGX Hands-on/src/app/embedded_device.h
Normal file
23
Assignment 7 - SGX Hands-on/src/app/embedded_device.h
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
#ifndef EMBEDDED_DEVICE_H
|
||||
#define EMBEDDED_DEVICE_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
/*
|
||||
* @brief getter for embedded subcommand syntax string
|
||||
*
|
||||
* @returns null-terminated syntax string
|
||||
*/
|
||||
char *embedded_device_syntax(void);
|
||||
|
||||
/*
|
||||
* @brief CLI implementation for the "embedded" subcommand
|
||||
*
|
||||
* @param argc number of arguments with command and subcommand stripped
|
||||
* @param argv arguments with command and subcommand stripped
|
||||
*
|
||||
* @returns 0 on success, else error with output on stderr
|
||||
*/
|
||||
int handle_embedded_device(int argc, char **argv);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue