CoSWoT Servient-C
Loading...
Searching...
No Matches
Module.h
1#ifndef MODULE_H_INCLUDED
2#define MODULE_H_INCLUDED
3
4#include <time.h>
5#include "CoRTC.h"
6
21void initModule(int argc, char** argv);
22
27void deleteModule();
28
40void test(char * c);
41
47void delay(int number_of_seconds);
52#endif /* MODULE_H_INCLUDED */
void test(char *c)
Test function, publish the argument it receives.
Definition: Module.c:18
void delay(int number_of_seconds)
Delay function, wait a certain amount of seconds.
Definition: Module.c:31
void initModule(int argc, char **argv)
Initialise the module.
Definition: Module.c:6
void deleteModule()
Delete the module.
Definition: Module.c:13