{"id":17024579,"url":"https://github.com/vidojesevic/datastrlib","last_synced_at":"2025-08-10T04:08:53.994Z","repository":{"id":215128190,"uuid":"738188419","full_name":"vidojesevic/datastrlib","owner":"vidojesevic","description":"My implementation of various data structures in C","archived":false,"fork":false,"pushed_at":"2024-01-15T18:13:15.000Z","size":1120,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-12T12:51:25.538Z","etag":null,"topics":["hashmap","linked-lists","queues","single-linked-list","stacks"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vidojesevic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-01-02T16:29:13.000Z","updated_at":"2024-01-04T11:51:03.000Z","dependencies_parsed_at":"2025-03-22T18:41:11.151Z","dependency_job_id":"cf42ee49-bb20-43c7-93f1-7b286cb8c1d9","html_url":"https://github.com/vidojesevic/datastrlib","commit_stats":null,"previous_names":["vidojesevic/datastrlib"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/vidojesevic/datastrlib","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vidojesevic%2Fdatastrlib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vidojesevic%2Fdatastrlib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vidojesevic%2Fdatastrlib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vidojesevic%2Fdatastrlib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vidojesevic","download_url":"https://codeload.github.com/vidojesevic/datastrlib/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vidojesevic%2Fdatastrlib/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269673830,"owners_count":24457213,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-10T02:00:08.965Z","response_time":71,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hashmap","linked-lists","queues","single-linked-list","stacks"],"created_at":"2024-10-14T07:26:08.841Z","updated_at":"2025-08-10T04:08:53.965Z","avatar_url":"https://github.com/vidojesevic.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DATA STRUCTURE LIBRARY\n\nThis is my own implementation of various Data Structures in C language.\n\n## Usage\n\n1. Download .zip from this repository\n2. Go to your project directory\n```\ncd your-project/\n```\n3. Unzip the files into your project directory\n```\nunzip ~/Downloads/datastrlib-main.zip\n```\n4. Create main.c and add these header files:\n```\n#include \u003cstdbool.h\u003e\n#include \"datastrlib-main/include/queues.h\"\n#include \"datastrlib-main/include/stacks.h\"\n```\n5. Compile with gcc\n```\ngcc -o user-project main.c -I datastrlib-main/include -L datastrlib-main/build -l:datastrlib.a\n```\n## Contributing\nIf you want to contribute to a project and make it better, your help is very welcome. Here is few guidelines to follow:\n\n### How to make a clean pull request\n\n1. Create a personal fork of the project on Github.\n2. Clone the fork on your local machine.\n3. Add the original repository as a remote called `upstream`.\n4. Create a new branch to work on!\n```\ngit checkout -b feature origin/feature\n```\n6. Develop new data structure\n- If you are developing new data structure, create src/data_structure_name.c and include/data_strucrute_name.h. Those 2 files must be clean and containing only code related to that data structure.\n- You can use custom main.c for testing your feature and don't forget to add that file inside .gitignore.\n- Compile your changes:\n```\nmake clean\nmake\n```\n- Compile test program\n```\ngcc -o user-project main.c -I include -L build -l:datastrlib.a\n```\n7. Create test cases\n- Inside of tests/unit directory, create test cases for your work and run:\n```\nmake test\n```\n8. Make changes\n- If your tests passed, you can make changes:\n```\ngit add .\ngit commit -m \"Feature/Bugfix\" -m \"- Your meaningful commit message\"\ngit push origin feature-or-fix-name\n```\n9. Create pull request\n- Before submitting the pull request, ensure your fork is in sync with the upstream\n10. Code rewiew\n  - Wait for code review and happy codding!\n  \n## License\nThis project is licensed under the MIT License. See the LICENSE file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvidojesevic%2Fdatastrlib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvidojesevic%2Fdatastrlib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvidojesevic%2Fdatastrlib/lists"}