]> git.sur5r.net Git - i3/i3/blob - i3bar/include/parse_json_header.h
Ensure all *.[ch] files include config.h
[i3/i3] / i3bar / include / parse_json_header.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3bar - an xcb-based status- and ws-bar for i3
5  * © 2010 Axel Wagner and contributors (see also: LICENSE)
6  *
7  * parse_json_header.c: Parse the JSON protocol header to determine
8  *                      protocol version and features.
9  *
10  */
11 #pragma once
12
13 #include <config.h>
14
15 #include <stdint.h>
16
17 /**
18  * Parse the JSON protocol header to determine protocol version and features.
19  * In case the buffer does not contain a valid header (invalid JSON, or no
20  * version field found), the 'correct' field of the returned header is set to
21  * false. The amount of bytes consumed by parsing the header is returned in
22  * *consumed (if non-NULL).
23  *
24  */
25 void parse_json_header(i3bar_child *child, const unsigned char *buffer, int length, unsigned int *consumed);