Added gm_mcp_parse_list, added gm_mcp_list_free, changed definition of gm_mcp_process_key_values (line arg is now const)

This commit is contained in:
Jesse van den Kieboom 2005-11-15 11:41:38 +00:00
parent 5e73fc3064
commit dfb9048733
1 changed files with 3 additions and 1 deletions

View File

@ -18,11 +18,13 @@ gdouble gm_mcp_get_version(gdouble client_min, gdouble client_max,
gchar const *gm_mcp_find_value(GList const *fields, gchar const *key);
gchar *gm_mcp_escape_if_needed(gchar const *line);
gchar *gm_mcp_un_escape(gchar *line);
GList *gm_mcp_process_key_values(gchar *line);
GList *gm_mcp_process_key_values(gchar const *line);
gboolean gm_mcp_parse_line(gchar *line, McpMessageInfo *info);
gchar *gm_mcp_generate_data_tag();
gchar *gm_mcp_generate_auth_key();
gchar const *gm_mcp_find_multiline_tag(GList const *fields);
void gm_mcp_destroy_fields(GList *fields);
GList *gm_mcp_parse_list(gchar const *s);
void gm_mcp_list_free(GList *list);
#endif /* __GM_MCP_H__ */