{"id":21730488,"url":"https://github.com/kumarjitdas/algnmem","last_synced_at":"2025-10-11T00:33:52.044Z","repository":{"id":168756505,"uuid":"453794876","full_name":"KumarjitDas/algnmem","owner":"KumarjitDas","description":"A simple C library for easy memory alignment.","archived":false,"fork":false,"pushed_at":"2022-01-30T21:55:04.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-04T17:50:23.717Z","etag":null,"topics":["batch-script","c","c99","cmake","library","memory","memory-management"],"latest_commit_sha":null,"homepage":"","language":null,"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/KumarjitDas.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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,"zenodo":null}},"created_at":"2022-01-30T20:34:19.000Z","updated_at":"2022-01-30T21:56:55.000Z","dependencies_parsed_at":null,"dependency_job_id":"9ecb9f53-90ca-48c0-8809-7e5e487bbfe4","html_url":"https://github.com/KumarjitDas/algnmem","commit_stats":null,"previous_names":["kumarjitdas/algnmem"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/KumarjitDas/algnmem","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KumarjitDas%2Falgnmem","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KumarjitDas%2Falgnmem/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KumarjitDas%2Falgnmem/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KumarjitDas%2Falgnmem/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KumarjitDas","download_url":"https://codeload.github.com/KumarjitDas/algnmem/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KumarjitDas%2Falgnmem/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279005655,"owners_count":26083943,"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-10-10T02:00:06.843Z","response_time":62,"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":["batch-script","c","c99","cmake","library","memory","memory-management"],"created_at":"2024-11-26T04:16:09.543Z","updated_at":"2025-10-11T00:33:52.036Z","avatar_url":"https://github.com/KumarjitDas.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# algnmem\n\nA simple C library for easy memory alignment.\n\n## Description\n\nThis is a simple dynamic memory-alignment C library. It contains convenience functions for *getting aligned-memory allocation size*, *aligned-memory location*, and *actual memory location from aligned-memory*.\n\nSee the list of features and functions implemented till now in [Project Status](#project-status).\n\n## Installation\n\nTo get started with this project, download and install the following.\n\n- Download and install **git**\n  - If you use *Windows*, then go to [this link](https://git-scm.com/downloads) and download and install the suitable version.\n  - If you use any stable version of *Debian/Ubuntu* then run this command in your terminal\n\n    ```sh\n    sudo apt-get install git\n    ```\n\n  - If you use *macOS* then install [homebrew](https://brew.sh/) if you don't already have it, then run this command in your terminal\n\n    ```sh\n    brew install git\n    ```\n\n- Run the command to clone this repository\n\n  ```sh\n  git clone https://github.com/KumarjitDas/algnmem.git\n  ```\n\n- Download and install a **C** compiler (*clang* or *gcc*)\n  - If you use *Windows 10* then download and install a suitable version of **clang** from\n    [this](https://releases.llvm.org/download.html) link. For **gcc**, use the suitable *MinGW* version from [this](http://mingw-w64.org/doku.php/download) link.\n  - If you use any stable version of *Debian/Ubuntu* then run these commands in your terminal to download and install **clang** and **gcc** compilers\n\n    ```sh\n    sudo apt install clang\n    ```\n\n    ```sh\n    sudo apt install gcc\n    ```\n\n  - In *macOS*, **clang** is the default **C** compiler. To download and install gcc, run this command in your terminal\n\n    ```sh\n    brew install gcc\n    ```\n\n- Download and install **Ninja** build system\n  - If you use *Windows 10* then download and install **Ninja** from [here](https://github.com/ninja-build/ninja/releases).\n  - If you use any stable version of *Debian/Ubuntu* then run this command in your terminal\n\n    ```sh\n    sudo apt-get install ninja-build\n    ```\n\n  - If you use *macOS* then run this command in your terminal\n\n    ```sh\n    brew install ninja\n    ```\n\n- Download and install **CMake** build automation tool\n  - If you use *Windows 10* then download and install **CMake** from [here](https://cmake.org/download/).\n  - If you use any stable version of *Debian/Ubuntu* then run this command in your terminal\n\n    ```sh\n    sudo apt-get -y install cmake\n    ```\n\n  - If you use *macOS* then run this command in your terminal\n\n    ```sh\n    brew install cmake\n    ```\n\n## Roadmap\n\nSee the [open issues](https://github.com/KumarjitDas/algnmem/issues) for a list of proposed features/functionalities (and known issues).\n\nThe list of features and functions implemented till now is given in [Project Status](#project-status).\n\n## Contributing\n\nContributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.\n\n- Fork this Project\n- Create your *Feature Branch*\n\n  ```sh\n  git checkout -b feature/AmazingFeature\n  ```\n\n- Commit your *Changes*\n\n  ```sh\n  git commit -m 'Add some AmazingFeature'\n  ```\n\n- Push to the Branch\n\n  ```sh\n  git push origin feature/AmazingFeature\n  ```\n\n- Create a *Pull Request*\n\n## Naming Convension\n\nThe naming convension used in this project will be listed soon.\n\n## License\n\nThis project is distributed under the **MIT License**. See [LICENSE](LICENSE) for more information.\n\n## Project Status\n\nList of functionalities/features implemented so far.\n\n\u003c!-- - *kdi_get_size_for_memory_alignment*\n- *kdi_align_memory*\n- *kdi_get_actual_memory_from_aligned_memory* --\u003e\n\n## Acknowledgment\n\nI appreciate these websites which helped me to make such good **README** file, and helped me to learn about project versioning and keeping **CHANGELOG**.\n\n- [Make a README](https://www.makeareadme.com/)\n- [Semantic Versioning](https://semver.org/spec/v2.0.0.html)\n- [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)\n\n## Contact\n\nTwitter: [@kumarjitdas1999](https://twitter.com/kumarjitdas1999)\n\nLinkedIn: [Kumarjit Das](https://www.linkedin.com/in/kumarjit-das/)\n\nE-mail: [kumarjitdas1999@gmail.com](kumarjitdas1999@gmail.com)\n\nProject link: [GitHub-KumarjitDas-algnmem](https://github.com/KumarjitDas/algnmem)\n\n## Versioning\n\nThis project uses **MAJOR**, **MINOR**, and **PATCH** version numbers for versioning (v*MAJOR.MINOR.PATCH*).\n\n- **MAJOR** version number indicates *new changes which may be incompatible with older versions*.\n- **MINOR** version number indicates *addition of backwards-compatible features*.\n- **PATCH** version number indicates *backwards-compatible bug fixes*, or minor mistake fixes like *spelling*, *character cases*, *punctuations*, and *indentation*.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkumarjitdas%2Falgnmem","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkumarjitdas%2Falgnmem","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkumarjitdas%2Falgnmem/lists"}