mangareader/include/openmg/util/soup.h
sergiotarxz 923282f1d1 Splitting manga.c contents into xml.c and soup.c.
It is still needed to refactor string manipulation
and delete manga.c and manga.h (The root one,
MgManga is ok.)
2021-10-30 19:01:17 +02:00

16 lines
327 B
C

#pragma once
#include <glib-object.h>
G_BEGIN_DECLS
#define MG_TYPE_UTIL_SOUP mg_util_soup_get_type()
G_DECLARE_FINAL_TYPE (MgUtilSoup, mg_util_soup, MG, UTIL_SOUP, GObject)
MgUtilSoup *
mg_util_soup_new ();
char *
mg_util_soup_get_request (MgUtilSoup *self, const char *const url, gsize *size_response_text);
G_END_DECLS