summaryrefslogtreecommitdiff
path: root/rtclient.h
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-12 12:42:38 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-12 12:42:38 +0800
commitafcfe1bf43eab83357f88fc71ddeb9b0356fd3d0 (patch)
tree1cc810081dc37aeb623a06e76e290e1e10ee0b6f /rtclient.h
parentbf2f5bae48a3f7daee7f2096328dada68eacd3fd (diff)
More consistent function names
and make static reusable functions in the implementation
Diffstat (limited to 'rtclient.h')
-rw-r--r--rtclient.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rtclient.h b/rtclient.h
index 1fbf589..ec92d64 100644
--- a/rtclient.h
+++ b/rtclient.h
@@ -9,9 +9,9 @@ extern "C" {
bool rtclient_init(const char *server_url);
void rtclient_login(const char *name, const char *password);
- bool rtclient_get_user(struct rt_user **userptr, const char *name);
+ bool rtclient_userget(struct rt_user **userptr, const char *name);
void rtclient_search(const char *query);
- void rtclient_user_free(struct rt_user *user);
+ void rtclient_userfree(struct rt_user *user);
void rtclient_cleanup();
#ifdef __cplusplus