diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-19 22:52:39 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-19 22:52:39 +0800 |
commit | 2ecd7fbbc8456bd5a3d4f6b188c626bc44c60eb2 (patch) | |
tree | 2793f379745b7b8cc63bd533419cca7db43173c1 /post.h | |
parent | d57d216e4dad7feeb2710ff4482cc6d034716121 (diff) |
Add header guard
Diffstat (limited to 'post.h')
-rw-r--r-- | post.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,6 @@ +#ifndef RTCLIENT_POST_H +#define RTCLIENT_POST_H + #include "request.h" inline void post(const char *path, const char *pairs[], size_t n) @@ -36,3 +39,5 @@ inline void post(const char *path, const char *pairs[], size_t n) curl_formfree(post); post = NULL; } + +#endif // RTCLIENT_POST_H |