First release of open-appsec source code

This commit is contained in:
roybarda
2022-10-26 19:33:19 +03:00
parent 3883109caf
commit a883352f79
1353 changed files with 276290 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
/* ensure that if we try to generate an extra closing brace
* we get the expected error */
#include <yajl/yajl_gen.h>
#include <stdio.h>
#define CHK(x) if (x != yajl_gen_status_ok) return 1;
int main(void) {
yajl_gen yg;
yajl_gen_status s;
yg = yajl_gen_alloc(NULL);
CHK(yajl_gen_map_open(yg));
CHK(yajl_gen_map_close(yg));
s = yajl_gen_map_close(yg);
return (yajl_gen_generation_complete == s);
}