aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-05-10Add utils.pc in ignoreAlessandro Iezzi
2023-05-10Change command for pkg-config pathAlessandro Iezzi
2023-05-10Add PC_FILE varAlessandro Iezzi
2023-05-10Remove utils.pcAlessandro Iezzi
Now it's generated by Makefile.
2023-05-10Add command to generate utils.pcAlessandro Iezzi
2023-05-10Change LIBNAME var using NAME as suffixAlessandro Iezzi
2023-05-10Add NAME varAlessandro Iezzi
2023-05-10Add LIBDSCR variableAlessandro Iezzi
2023-05-10remove a blank lineAlessandro Iezzi
2023-05-10Add TARGET in build-pc.shAlessandro Iezzi
2023-05-10Add variables anch some check in build-pc.shAlessandro Iezzi
2023-05-10Add build-pc.shAlessandro Iezzi
This is a script to generate the pc file.
2023-05-10Change subdirectory for installationAlessandro Iezzi
2023-05-10Ehnance building systemAlessandro Iezzi
Is the same as liblog.
2023-05-10Change include from list.h to utils.hAlessandro Iezzi
2023-05-10Rename function to get library versionAlessandro Iezzi
2023-05-10Remove version.hAlessandro Iezzi
2023-05-10Change the name of define in utils.hAlessandro Iezzi
2023-05-10Rename list.h to utils.hAlessandro Iezzi
2023-05-10Change license from LGPLv3 to BSD-3Alessandro Iezzi
2023-03-14Add to `install` target the archive and includesAlessandro Iezzi
and add `uninstall` target
2023-03-14libutils 0.0.1v0.0.1Alessandro Iezzi
2023-03-14Generify the function to get the versionAlessandro Iezzi
2023-03-13Rewrite test/MakefileAlessandro Iezzi
2023-03-13Remove the name of libraries in .gitignoreAlessandro Iezzi
2023-03-13Rewrite testsAlessandro Iezzi
2023-03-13Change data return in clist_iterator_nextAlessandro Iezzi
We want only data and not the node structure.
2023-03-13Change the sign of clist_iterator_has_nextAlessandro Iezzi
We don't need the pointer passed as argument.
2023-03-13Remove size_of from clist_addAlessandro Iezzi
We don't need the size of data, just calculate it from the pointer passed by.
2023-03-13Change the logic to add_all collectionAlessandro Iezzi
We call clist_add inside the loop instead to play with pointers 'cause the data will be copied instead of referenced. So if the programmer clear the second list, the data will be stay there.
2023-03-13Format function signsAlessandro Iezzi
Every function must be declared like this: <type> <sign>(<arguments>) So you can use `grep -r '^<func>'` to find the declaration.
2023-03-13Add `tests` targetAlessandro Iezzi
2023-03-13Move -shared flag to LFLAGSAlessandro Iezzi
2023-03-13Change the standard from ansi to C99Alessandro Iezzi
2023-03-13Move -pedantic to WARNINGS variableAlessandro Iezzi
2023-03-13Add DISTNAME variableAlessandro Iezzi
2023-03-13Add ARCHIVE variableAlessandro Iezzi
2023-03-13Add SHARED variableAlessandro Iezzi
2023-03-13Add LIBNAME variableAlessandro Iezzi
2023-03-13Add NAME variableAlessandro Iezzi
2023-03-13Change the name of compiler from clang to ccAlessandro Iezzi
It's the same compiler in my machine, but, I prefer the second name.
2023-03-07Change license from AGPL v3 to LGPL v3Alessandro Iezzi
2023-01-18Add target to build an archive (.a)Alessandro Iezzi
2022-11-30Add `dist` and `install` targetsAlessandro Iezzi
2022-11-30Add versionv0.0.0Alessandro Iezzi
2022-11-30Edit .gitignoreAlessandro Iezzi
2022-11-30Replace itoa() with sprintf()Alessandro Iezzi
2022-11-30Edit test/MakefileAlessandro Iezzi
2022-11-30Rename iterator_next() to clist_iterator_next()Alessandro Iezzi
2022-11-30Rename iterator_has_next() to clist_iterator_has_next()Alessandro Iezzi