summaryrefslogtreecommitdiff
path: root/interchange.c
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-03-14 09:56:12 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-03-14 09:56:12 +0800
commit0a2cf4390bef3b449b7cfa02c2c71e120c072be1 (patch)
treea94b13b73ce42785b72df3e142f2df4401ae39f2 /interchange.c
parent802e1a0b2f6fbdd244f66fe2bffe26ff2e2566d7 (diff)
Flypage is the right term all this time
Diffstat (limited to 'interchange.c')
-rw-r--r--interchange.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/interchange.c b/interchange.c
index d2a3217..e96c99b 100644
--- a/interchange.c
+++ b/interchange.c
@@ -43,9 +43,10 @@ void interchange_init(const char *url, const char *dir, const char *cookie,
#endif
}
-void interchange_page(const char *path, void (*handler)(interchange_response *))
+void interchange_flypage(const char *path,
+ void (*parser)(interchange_response *))
{
- request(handler, NULL, NULL, "%s", path);
+ request(parser, NULL, NULL, "%s", path);
}
void interchange_catalog(const char *prod_group, void (*handler)(interchange_response *), void (*callback)(struct interchange_catalog *))