Open-source radix/mtrie implementation in C? [closed] - c

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I intend to use RADIX / MTRIE as my preferred data-structure for a routing implementation.
Is there a decent open source implementation available (apart from freebsd-net) which I can use for my purpose, or do I need to write one myself?

There is a radix-tree implementation available under the GNU General Public License version 2, or (at your option) any later version:
http://www.gelato.unsw.edu.au/lxr/source/lib/radix-tree.c

If you cant find anything else, you can always port this java version from Google Code.

Related

Code of the function pthread_join - Pthread Library [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I'm looking for the code of the pthread_join, but online I found only the prototype. Could you tell me where I can find it please?
There is not "the code", there are many different implementations that partially build on each other. For example
The GNU C Library if you are using gcc
Google's implementation for Android
Apple's implementation

How can I find the pbmpak.c file over the internet? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I have a source code that included "pbmpak.h" and I need the implementation of this header(pbmpak.c) to run the program. I found the header and downloaded that but I can't find the implementation.
I believe you should be able to get everything from netpbm. That is the suite that contains all the relevant conversion routines and looking at pbmpak.h, probably contains all the function definitions. Notice that netpbm replaced pbmplus suite.
I'd take a look on github. I found this quite easily
https://github.com/FlybyMedia/3rd-party-localize/blob/master/PBMLIB/pbmpak.c
There are quite a few references that might get you started here...
https://github.com/search?q=pbmpak&ref=searchresults&type=Code&utf8=%E2%9C%93

Looking for a light-weight cross-platform C threading library [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I wanted to use OpenMP for this, but it is not appropriate for my purposes: creating my own thread pool.
So, this needs to be C89 code with, of course, platform specific code for windows and unices.
I need this for a C only library, so no C++, boost C++11, etc.
Thanks!
Use POSIX Threads - pthread. There is Windows implementation.
Also take a look on GThread - part of Glib.

Is there an open-source implementation of Google's Task Queue? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
As the title says, I'm wondering if there's an open-source, drop-in replacement for Google's Task Queue. The closest I've been able to find so far is celery, but that's not really what I'm looking for.
AppScale includes a TaskQueue component, but whether it is drop-in will depend where you drop it.
Not exactly TaskQueue, but RabbitMQ and ActiveMQ could be decent drop-in replacements.

Crypto++ equivalent in C [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Is there any equivalent of open-source ANSI-C library for cryptographic primitives.
I know about Crypto++ for C++, but was not able to find anything for C
Mostly I need SHA-1, SHA-2, AES, RSA
PolarSSL seems to have quite good coverage.
You could use OpenSSL. It may be a bit over sized for your purpose but it does contain your primitives. It is both used a lot and it is maintained.

Resources