From 4a5fcab7acc55495d0a617eeebbbeaebc1872dbf Mon Sep 17 00:00:00 2001 From: Anthony Liguori Date: Wed, 11 Nov 2009 10:39:23 -0600 Subject: Add a JSON parser This is the third and final stage of the JSON parser. It parses lexical tokens performing grammar validation and creating the final QObject representation. It uses a recursive decent parser. Signed-off-by: Anthony Liguori --- json-parser.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 json-parser.h (limited to 'json-parser.h') diff --git a/json-parser.h b/json-parser.h new file mode 100644 index 0000000000..97f43f67d4 --- /dev/null +++ b/json-parser.h @@ -0,0 +1,22 @@ +/* + * JSON Parser + * + * Copyright IBM, Corp. 2009 + * + * Authors: + * Anthony Liguori + * + * This work is licensed under the terms of the GNU LGPL, version 2.1 or later. + * See the COPYING.LIB file in the top-level directory. + * + */ + +#ifndef QEMU_JSON_PARSER_H +#define QEMU_JSON_PARSER_H + +#include "qemu-common.h" +#include "qlist.h" + +QObject *json_parser_parse(QList *tokens, va_list *ap); + +#endif -- cgit v1.2.1