diff options
-rw-r--r-- | interchange.c | 3 | ||||
-rw-r--r-- | interchange.h | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/interchange.c b/interchange.c index e96c99b..11ab9fc 100644 --- a/interchange.c +++ b/interchange.c @@ -43,8 +43,7 @@ void interchange_init(const char *url, const char *dir, const char *cookie, #endif } -void interchange_flypage(const char *path, - void (*parser)(interchange_response *)) +void interchange_page(const char *path, void (*parser)(interchange_response *)) { request(parser, NULL, NULL, "%s", path); } diff --git a/interchange.h b/interchange.h index 134865d..ff2c9c4 100644 --- a/interchange.h +++ b/interchange.h @@ -52,8 +52,7 @@ void interchange_init(const char *sampleurl, const char *image_dir, * \param path The path. * \param parser Function for parsing the formatted response. */ -void interchange_flypage(const char *path, - void (*parser)(interchange_response *)); +void interchange_page(const char *path, void (*parser)(interchange_response *)); /*! * \brief For fetching data about products that belong a specific group. |