75473a4ec3d94914ddfc0255e882ae7a6e7cc219
[routeros-api.git] / src / ros_parse.h
1 /**
2  * librouteros - src/ros_parse.h
3  * Copyright (C) 2009  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Authors:
19  *   Florian octo Forster <octo at verplant.org>
20  **/
21
22 #ifndef ROS_PARSE_H
23 #define ROS_PARSE_H 1
24
25 _Bool sstrtob (const char *str);
26
27 unsigned int sstrtoui (const char *str);
28 uint64_t sstrtoui64 (const char *str);
29
30 double sstrtod (const char *str);
31
32 int sstrto_rx_tx_counters (const char *str, uint64_t *rx, uint64_t *tx);
33
34 uint64_t _sstrtodate (const char *str, _Bool have_hour);
35 #define sstrtodate(str) _sstrtodate((str), 0)
36
37 #endif /* ROS_PARSE_H */
38
39 /* vim: set ts=2 sw=2 noet fdm=marker : */