Remove #includes from jv.h
9 files changed
tree: 04fedd3639f159f43aaf7ae499b987ab4b32d858
  1. build/
  2. config/
  3. docs/
  4. scripts/
  5. tests/
  6. .gitattributes
  7. .gitignore
  8. AUTHORS
  9. builtin.c
  10. builtin.h
  11. bytecode.c
  12. bytecode.h
  13. compile.c
  14. compile.h
  15. configure.ac
  16. COPYING
  17. exec_stack.h
  18. execute.c
  19. jq.1.default
  20. jq.h
  21. jq.spec
  22. jq_parser.h
  23. jq_test.c
  24. jv.c
  25. jv.h
  26. jv_alloc.c
  27. jv_alloc.h
  28. jv_aux.c
  29. jv_dtoa.c
  30. jv_dtoa.h
  31. jv_file.c
  32. jv_parse.c
  33. jv_print.c
  34. jv_unicode.c
  35. jv_unicode.h
  36. jv_utf8_tables.h
  37. lexer.l
  38. locfile.c
  39. locfile.h
  40. main.c
  41. Makefile.am
  42. opcode_list.h
  43. parser.y
  44. README.md
  45. setup.sh
README.md

jq

jq is a command-line JSON processor.

If you want to learn to use jq, read the documentation at http://stedolan.github.io/jq. This documentation is generated from the docs/ folder of this repository.

If you want to hack on jq, feel free, but be warned that its internals are not well-documented at the moment. Bring a hard hat and a shovel. Also, read the wiki: http://github.com/stedolan/jq/wiki

If you‘re building directly from the latest git, you’ll need flex and bison installed. To build, run:

autoreconf -i
./configure
make

After make finishes, you'll be able to use ./jq. You can also install it using:

sudo make install

If you‘re not using the latest git version but instead building a released tarball (available on the website), then you won’t need to run autoreconf (and shouldn‘t), and you won’t need flex or bison.