2 * Copyright (c) 2009, 2010 Petri Lehtinen <petri@digip.org>
4 * Jansson is free software; you can redistribute it and/or modify
5 * it under the terms of the MIT license. See LICENSE for details.
17 json = json_load_file("/path/to/nonexistent/file.json", &error);
19 fail("json_load_file returned an invalid line number");
20 if(strcmp(error.text, "unable to open /path/to/nonexistent/file.json: No such file or directory") != 0)
21 fail("json_load_file returned an invalid error message");