All Questions
8 questions
2
votes
1
answer
155
views
Thread-safe strtok in C - version II
After improving Thread-safe strtok in C according to vnp's and Harith's nice comments, I ended up with this:
Code
strtok_arr.h:
...
3
votes
0
answers
216
views
libconfini (shared library)
I recently wrote a small INI parsing library. The code is also on GitHub, with documentation. I would like to have opinions, suggestions, and critiques.
confini.h
...
6
votes
1
answer
945
views
Simple REPL command parser in Java
I have this tiny library for implementing simple command line languages. It is not flexible enough for handling actual programming languages, but hopefully it may help implementing simpler REPL's ...
12
votes
1
answer
3k
views
A regular expression parsing library in C
I've created a regular expression (regex) parsing library in C, and would like some feedback on it. Speed is really important to me, but any and all suggestions are acceptable.
...
24
votes
2
answers
2k
views
parcel: a JSON parsing library in C
I've created a JSON parsing library in C, and would like some feedback on it (feel free to submit a pull request on GitHub). Any and all suggestions are acceptable, but I would prefer if reviews were ...
4
votes
1
answer
4k
views
Library for parsing strings to java types, generic types and collections/arrays
I've done a library that can parse strings to different java types and to List<...>, Set<...>, ...
6
votes
2
answers
215
views
Educational "Library" project
The assignment is very open and we have only 4 things it needs to cover:
File write and read
Use a Struct
Export into HTML format
use a common sorting algorithm
so I've decided to create a little "...
1
vote
3
answers
515
views
Parsing library interface
I have been working on a parser generator, in which I want to employ a sort of fluent configuration interface - avoiding the pre-compile step that usually comes with parser generators. It's supposed ...