10
votes
6answers
371 views
looking for a tuple matching algorithm
I need to implement an in-memory tuple-of-strings matching feature in C. There will be large list of tuples associated with different actions and a high volume of events to be matched against the …
0
votes
2answers
134 views
ld: duplicate symbol _dbg_char
Hi. Getting a linker error on osx (no errors on linux or fbsd for the same code):
ld: duplicate symbol _dbg_char in .libs/liboekernel_la-OEK_get.o and .libs/liboekernel_la-OEK.o
…
2
votes
Unit Testing C Code
I don't use a framework, I just use autotools "check" target support. Implement a "main" and use assert(s).
My test dir Makefile.am(s) look like:
check_PROGRAMS = test_oe_a …
2
votes
Container Class / Library for C
I've been using a library I've been growing from Hanson's "C Interface and Implementations" book. His source is downloadable at
…
2
votes
Resources for learning C program design
My concerns going from OO back to C were addressed in David Hanson's "C Interfaces and Implementations".
C Interfaces and …
0
votes
