mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-16 00:00:02 +01:00
16 lines
285 B
C
16 lines
285 B
C
|
/** Message related functions.
|
||
|
*
|
||
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
||
|
* @copyright 2014, Institute for Automation of Complex Power Systems, EONERC
|
||
|
*/
|
||
|
|
||
|
#ifndef _MSG_H_
|
||
|
#define _MSG_H_
|
||
|
|
||
|
#include "msg_format.h"
|
||
|
|
||
|
void msg_swap(struct msg *m);
|
||
|
|
||
|
#endif /* _MSG_H_ */
|
||
|
|