-2

I have one requirement in one of my projects, where I have to deal with lots of data. Typically huge, dynamic arrays in C.

I searched but I have not been able to find what I need. I am looking for a usable library, which encapsulates the details of list implementation in C, and provides various functions for List manipulation.

I am aware that we can create such implementation in C, using pointers.

I have followed below links:

C generic linked-list

Generic list manipulation function in C?

Thanks in advance.

Community
  • 1
  • 1
Arunkumar
  • 3,812
  • 3
  • 22
  • 30
  • 2
    Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it. – Gokul Nath KP Dec 05 '13 at 06:19
  • 1
    I have mentioned that I looked for such tool. In case that is present, and I am not aware of, I would really appreciate such help. But I am not asking anyone to search one for me. I just want to know if someone knows of any – Arunkumar Dec 05 '13 at 06:21
  • 2
    If you want a generic library, use a language that supports generic programming. C isn't one, but there seems to be one or two languages that are advertised as "the next C" or something. One of them just might fit the bill. – n. m. could be an AI Dec 05 '13 at 06:30

1 Answers1

3

May be this small library is what you need.

It is a generic list implementation in C. glist

rajan goswami
  • 580
  • 4
  • 6