Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anpep/nih
Implementation of commonly used data-structures and snippets
https://github.com/anpep/nih
c data-structures data-structures-c utility-functions utility-library
Last synced: 19 days ago
JSON representation
Implementation of commonly used data-structures and snippets
- Host: GitHub
- URL: https://github.com/anpep/nih
- Owner: anpep
- License: gpl-2.0
- Created: 2020-06-06T12:51:23.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-06T12:59:19.000Z (over 4 years ago)
- Last Synced: 2024-04-17T17:53:26.356Z (8 months ago)
- Topics: c, data-structures, data-structures-c, utility-functions, utility-library
- Language: C
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING.md
Awesome Lists containing this project
README
# nih
![CI](https://github.com/anpep/nih/workflows/CI/badge.svg?branch=master)
> Implementation of commonly used data-structures and snippets## Summary
I'm tired of implementing the same code again and again. Also, let's face it,
it's 2020 and copying over files from other projects is simply not gonna cut it.## Licensing
Most source files are licensed under the [GNU GPL v2](https://github.com/anpep/nih/blob/master/COPYING.md)
license (with some exceptions, listed below).```c
/*
* nih -- Implementation of commonly used data-structures and snippets
* Copyright (c) 2019, 2020 Angel
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 2.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
```This project integrates [siu/minunit](https://github.com/siu/minunit), which is
`Copyright (c) 2012 David Siñuela Pastor, [email protected]` and licensed under
the [MIT License](https://github.com/siu/minunit/blob/master/MIT-LICENSE.txt).