13 lines
306 B
C
13 lines
306 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#ifndef __MQTT_SAMPLE_H__
|
|
#define __MQTT_SAMPLE_H__
|
|
|
|
int mqtt_start(int argc, char **argv);
|
|
int mqtt_stop(int argc, char **argv);
|
|
int mqtt_publish(int argc, char **argv);
|
|
int mqtt_subscribe(int argc, char **argv);
|
|
int mqtt_unsubscribe(int argc, char **argv);
|
|
|
|
#endif |