diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-27 23:51:46 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-27 23:51:46 +0800 |
commit | 9c26a7ea4265b6f372ba40ea5fcb6fc440538813 (patch) | |
tree | 1e529c5eefb9b1254d883cb63bc35af5892e499d | |
parent | 65a334cf2fe2d7d524c129f0df765463a91f542c (diff) |
Make headers function inline
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | pikul.c | 1 | ||||
-rw-r--r-- | shipping.c | 12 | ||||
-rw-r--r-- | shipping.h | 11 |
4 files changed, 12 insertions, 14 deletions
diff --git a/Makefile.am b/Makefile.am index 5d8f4d7..f5a691e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ lib_LTLIBRARIES = libpikul.la -libpikul_la_SOURCES = pikul.c shipping.c handler.c \ +libpikul_la_SOURCES = pikul.c handler.c \ anteraja.c libpikul_la_CPPFLAGS = $(DEPS_CFLAGS) libpikul_la_LDFLAGS = $(DEPS_LIBS) @@ -6,6 +6,7 @@ CURL *curl; json_tokener *tokener; static struct shipping shipping; +extern inline void headers(struct shipping *shipping, const char *fields[], char *provisions[]); extern void anteraja_init(char *[], struct shipping *); extern void anteraja_services_request(const char *, const char *, double, struct shipping *, char **, char **); diff --git a/shipping.c b/shipping.c deleted file mode 100644 index f2e263c..0000000 --- a/shipping.c +++ /dev/null @@ -1,12 +0,0 @@ -#include <string.h> -#include "shipping.h" - -void headers(struct shipping *shipping, const char *fields[], char *provisions[]) -{ - shipping->headers = NULL; - while (*fields) { - char header[strlen(*fields) + strlen(*provisions) + 2]; - sprintf(header, "%s:%s", *fields++, *provisions++); - shipping->headers = curl_slist_append(shipping->headers, header); - } -} @@ -1,3 +1,4 @@ +#include <string.h> #include <curl/curl.h> #include "pikul.h" @@ -7,4 +8,12 @@ struct shipping { struct curl_slist *headers; }; -void headers(struct shipping *, const char *[], char *[]); +inline void headers(struct shipping *shipping, const char *fields[], char *provisions[]) +{ + shipping->headers = NULL; + while (*fields) { + char header[strlen(*fields) + strlen(*provisions) + 2]; + sprintf(header, "%s:%s", *fields++, *provisions++); + shipping->headers = curl_slist_append(shipping->headers, header); + } +} |