Webcom C SDK
webcom-parser.h
Go to the documentation of this file.
1 /*
2  * Webcom C SDK
3  *
4  * Copyright 2017 Orange
5  * <camille.oudot@orange.com>
6  *
7  * This library is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU Lesser General Public License as published by the
9  * Free Software Foundation; either version 2.1 of the License, or (at your
10  * option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
15  * for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public License
18  * along with this library; if not, write to the Free Software Foundation,
19  * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20  *
21  */
22 
23 #ifndef INCLUDE_WEBCOM_PARSER_H_
24 #define INCLUDE_WEBCOM_PARSER_H_
25 
26 #include <stddef.h>
27 
28 #include "webcom-msg.h"
29 
30 
31 typedef struct wc_parser wc_parser_t;
32 
38 typedef enum {
43 
44 
51 
69 wc_parser_result_t wc_datasync_parse_msg_ex(wc_parser_t *parser, char *buf, size_t len, wc_msg_t *res);
70 
76 const char *wc_datasync_parser_get_error(wc_parser_t *parser);
77 
89 int wc_datasync_parse_msg(char *str, wc_msg_t *res);
90 
97 
110 int wc_datasync_key_cmp(const char *sa, const char *sb);
111 
116 #endif /* INCLUDE_WEBCOM_PARSER_H_ */
Definition: webcom-parser.h:40
struct wc_parser wc_parser_t
Definition: webcom-parser.h:31
wc_parser_result_t wc_datasync_parse_msg_ex(wc_parser_t *parser, char *buf, size_t len, wc_msg_t *res)
Definition: webcom-parser.h:41
wc_parser_result_t
Definition: webcom-parser.h:38
Definition: webcom-msg.h:187
Definition: webcom-parser.h:39
wc_parser_t * wc_datasync_parser_new()
void wc_datasync_parser_free(wc_parser_t *parser)
const char * wc_datasync_parser_get_error(wc_parser_t *parser)
int wc_datasync_key_cmp(const char *sa, const char *sb)
int wc_datasync_parse_msg(char *str, wc_msg_t *res)