{"id":27091253,"url":"https://github.com/ragibasif/xstd","last_synced_at":"2025-07-08T20:38:31.913Z","repository":{"id":286200459,"uuid":"957675350","full_name":"ragibasif/xstd","owner":"ragibasif","description":null,"archived":false,"fork":false,"pushed_at":"2025-04-04T22:23:41.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-04T23:23:57.907Z","etag":null,"topics":["algorithms","c","c99","data-structure","header-library","lightweight","low-level","modular","opensource","performance","standard-library","stdlib","systems-programming","utilities","xstd"],"latest_commit_sha":null,"homepage":"","language":"Makefile","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/ragibasif.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":"2025-03-30T23:18:40.000Z","updated_at":"2025-04-04T22:23:45.000Z","dependencies_parsed_at":"2025-04-04T23:34:23.572Z","dependency_job_id":null,"html_url":"https://github.com/ragibasif/xstd","commit_stats":null,"previous_names":["ragibasif/xstd"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ragibasif%2Fxstd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ragibasif%2Fxstd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ragibasif%2Fxstd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ragibasif%2Fxstd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ragibasif","download_url":"https://codeload.github.com/ragibasif/xstd/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247447273,"owners_count":20940292,"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","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":["algorithms","c","c99","data-structure","header-library","lightweight","low-level","modular","opensource","performance","standard-library","stdlib","systems-programming","utilities","xstd"],"created_at":"2025-04-06T07:25:36.850Z","updated_at":"2025-04-06T07:25:37.529Z","avatar_url":"https://github.com/ragibasif.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# xstd\n\n\u003c/div\u003e\n\n\u003cdetails open=\"open\"\u003e\n\u003csummary\u003eTable of Contents\u003c/summary\u003e\n\n- [xstd](#default)\n  - [🧠 About](#-about)\n  - [📁 Directory Structure](#-directory-structure)\n  - [🛠️ Usage](#️-usage)\n    - [💻 Installation](#-installation)\n    - [🔧 Build the project](#-build-the-project)\n    - [🧹 Clean build files](#-clean-build-files)\n    - [🏃 Run the executable](#-run-the-executable)\n  - [🧪 Running Tests](#-running-tests)\n  - [📄 Dependencies](#-dependencies)\n  - [📚 Documentation](#-documentation)\n  - [🙌 Contributing](#-contributing)\n  - [🪪 License](#-license)\n  - [👤 Author](#-author)\n  - [Acknowledgements](#acknowledgements)\n\n\u003c/details\u003e\n\n## 🧠 About\n\nxstd is a C project that [brief description of what your program does].\n\nIt's written in standard C (C99) and uses GNU Make for building. The goal of this project is to [insert goal or motivation, e.g., build a simple CLI tool, implement data structures from scratch, etc.].\n\n## 📁 Directory Structure\n\n```bash\nxstd/\n├── src/            # Source files\n├── include/        # Header files\n├── build/          # Build artifacts (created after make)\n├── Makefile        # Build system\n├── README.md       # This file\n└── main.c          # Entry point (if not inside src/)\n```\n\n## 🛠️ Usage\n\n### 💻 Installation\n\nClone the repository.\n\n```bash\ngit clone git@github.com:ragibasif/xstd.git\n```\n\nMake sure you have `gcc` and `make` installed.\n\n### 🔧 Build the project\n\n```bash\nmake\n```\n\n### 🧹 Clean build files\n\n```bash\nmake clean\n```\n\n### 🏃 Run the executable\n\n```bash\n./build/xstd\n```\n\n\u003e The executable will be built inside the `build/` directory.\n\n## 🧪 Running Tests\n\nIf you have a test suite:\n\n```bash\nmake test\n```\n\nOr you can manually compile and run test files like:\n\n```bash\ngcc -Iinclude tests/test_foo.c src/foo.c -o test_foo\n./test_foo\n```\n\n## 📄 Dependencies\n\nThis project uses:\n\n- C99 Standard\n- GNU Make\n- (Optional) Any libraries you're using (e.g., `glib`, `SDL2`, etc.)\n\n## 📚 Documentation\n\n- All headers are documented in the `include/` folder.\n- Inline comments are included in the source files.\n- [Optional] Use `doxygen` if you plan to generate documentation.\n\n## 🙌 Contributing\n\n1. Fork the repository\n2. Create a new branch (`git checkout -b feature/feature-name`)\n3. Make your changes and commit (`git commit -am 'Add new feature'`)\n4. Push to your fork (`git push origin feature/feature-name`)\n5. Open a pull request\n\n## 🪪 License\n\nThis project is licensed under the **MIT license**. See the [LICENSE](LICENSE) file for details.\n\n## 👤 Author\n\n[Ragib Asif](https://github.com/ragibasif)\n\n## Acknowledgements\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fragibasif%2Fxstd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fragibasif%2Fxstd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fragibasif%2Fxstd/lists"}