1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#include <stdio.h> #include <string.h> #ifdef __EMSCRIPTEN__ #include <emscripten/fetch.h> #else #include <curl/curl.h> #endif #include <json.h> #include "midtrans.h" void midtrans_init(const char *certificate) { #ifndef __EMSCRIPTEN__ curl_global_init(CURL_GLOBAL_SSL); #endif } void midtrans_cleanup() { #ifndef __EMSCRIPTEN__ curl_global_cleanup(); #endif }