]> git.sur5r.net Git - i3/i3/blob - i3bar/include/parse_json_header.h
Update copyright notices and get rid of ranges
[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 <stdint.h>
14
15 /**
16  * Parse the JSON protocol header to determine protocol version and features.
17  * In case the buffer does not contain a valid header (invalid JSON, or no
18  * version field found), the 'correct' field of the returned header is set to
19  * false. The amount of bytes consumed by parsing the header is returned in
20  * *consumed (if non-NULL).
21  *
22  */
23 void parse_json_header(i3bar_child *child, const unsigned char *buffer, int length, unsigned int *consumed);