16 lines
312 B
C
16 lines
312 B
C
#ifndef COMMAND_HANDLER_H
|
|
#define COMMAND_HANDLER_H
|
|
|
|
|
|
#include "command_message.h"
|
|
|
|
/**
|
|
* @brief Process received command message
|
|
*
|
|
* @param msg Command message to process
|
|
* @return 0 on success, negative errno on failure
|
|
*/
|
|
int command_handler(struct command_message_t *msg);
|
|
|
|
|
|
#endif // COMMAND_HANDLER_H
|