[Assignmnt-7] rename directory

This commit is contained in:
Sascha Tommasone 2024-07-08 11:06:13 +02:00 committed by saschato
parent f9b49a2119
commit d2f1a1e04b
36 changed files with 0 additions and 0 deletions

View file

@ -1,23 +0,0 @@
#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