Files
purple-plugin-delta/util.h
Nick Thomas de213f2b7a Initial integration with libdeltachat
This implements configuration, connection, sending and receiving IMs in the
simplest possible way. Lots and lots of cases are not handled.
2018-05-07 01:47:00 +01:00

10 lines
98 B
C

#ifndef UTIL_H
#define UTIL_H
#define UNUSED(x) (void)(x)
void debug(const char *str);
#endif