Tagged Questions
13
votes
2answers
163 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 ...
10
votes
3answers
107 views
Dynamic library to intercept oddsock hostname lookups
Just for the fun of it, I decided I would try to create sort of an intermediate DNS system for the oddsock SOCKS proxy. With this, the domain name extension .unet is statically resolved when ...
10
votes
1answer
108 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.
...
9
votes
4answers
138 views
Bare-bones string library
After years of criticizing others, I've finally found the time and worked up the courage to polish up one of my bits of code and solicit criticisms of my own.
This is a simple dynamic-string library ...
7
votes
2answers
287 views
Usage of a C library in a C++ project (std::string char array conversion)
Abstract
I have little C/C++ skills. I've learned programming mainly with Java, and so I chose C++ (targeting C++11) as the language to learn better. In my current C++ project, I have to use the ...
6
votes
2answers
102 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 ...
5
votes
5answers
186 views
C string library inspired by Python string functions
I'm working on a C library which attempts to bring some of the Python string functions over to C.
This is where my full source is located, but the majority of what I have so far is here.
Are there ...
5
votes
1answer
141 views
A simple NAT library
I've created a simple NAT library, with four essential functions:
Find the UNPN device (the router in my case).
Get the external IP address.
Add a port forwarding entry.
Delete a port forwarding ...
4
votes
2answers
149 views
Singly-linked list library
This is sort of a follow-up to a post I created about 10 days ago, but I have completed the implementation: Designing function prototypes for a singly-linked list API in C.
As I began to work on the ...
4
votes
2answers
56 views
C Development Utilities Library
I have been working on a small library of development utilities for some time now, incrementally improving and expanding it as I make use of it in other projects. I feel that it is fairly mature now; ...
3
votes
1answer
1k views
PID Controller library
I'm trying to implement a PID without floating point operations on a micro controller. I appreciate all feedback I can get.
Header file:
...