12345678910111213141516171819202122232425262728 |
- #ifndef MISC_MOSQ_H
- #define MISC_MOSQ_H
- #include <stdbool.h>
- #include <stdio.h>
- FILE *mosquitto__fopen(const char *path, const char *mode, bool restrict_read);
- char *misc__trimblanks(char *str);
- char *fgets_extending(char **buf, int *buflen, FILE *stream);
- #endif
|