I\'d like to parse C header files in Javascript. Is there any such library available? Otherwise, any tips to help me get started?
Update: My ultimate go
You might start by looking at peg.js which generates javascript code to parse a grammar given as input. Details avalable here https://pegjs.org/
Then yo would need to write or find a grammar for the header files you want to parse.