summaryrefslogtreecommitdiffstats
path: root/src/afb-apis.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/afb-apis.c')
-rw-r--r--src/afb-apis.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/afb-apis.c b/src/afb-apis.c
index 2822575b..bcb42429 100644
--- a/src/afb-apis.c
+++ b/src/afb-apis.c
@@ -83,6 +83,11 @@ error:
return -1;
}
+void afb_apis_call_(struct afb_req req, struct AFB_clientCtx *context, const char *api, const char *verb)
+{
+ afb_apis_call(req, context, api, strlen(api), verb, strlen(verb));
+}
+
void afb_apis_call(struct afb_req req, struct AFB_clientCtx *context, const char *api, size_t lenapi, const char *verb, size_t lenverb)
{
int i;