{"id":51971326,"url":"https://github.com/joleksia/42-nm","last_synced_at":"2026-07-29T22:33:49.977Z","repository":{"id":335348636,"uuid":"1101902242","full_name":"joleksia/42-nm","owner":"joleksia","description":"A completely UNIX project","archived":false,"fork":false,"pushed_at":"2026-03-29T10:22:17.000Z","size":160,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-06-09T08:35:40.581Z","etag":null,"topics":["42","42-school","42born2code","42cursus","42projects","42school","42warsaw","binutils","elf","elf-binaries","elf-format","elf-header","elf-loader","elf-parser","elf64","ft-nm","gnu","gnu-binutils","gnu-nm","nm"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-2.1","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/joleksia.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-22T13:02:53.000Z","updated_at":"2026-03-29T10:22:21.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/joleksia/42-nm","commit_stats":null,"previous_names":["itsyakub/42-nm","joleksia/42-nm"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/joleksia/42-nm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joleksia%2F42-nm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joleksia%2F42-nm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joleksia%2F42-nm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joleksia%2F42-nm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/joleksia","download_url":"https://codeload.github.com/joleksia/42-nm/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joleksia%2F42-nm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":36052204,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-07-20T02:08:10.276Z","status":"online","status_checked_at":"2026-07-29T02:00:04.910Z","response_time":95,"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":["42","42-school","42born2code","42cursus","42projects","42school","42warsaw","binutils","elf","elf-binaries","elf-format","elf-header","elf-loader","elf-parser","elf64","ft-nm","gnu","gnu-binutils","gnu-nm","nm"],"created_at":"2026-07-29T22:33:48.923Z","updated_at":"2026-07-29T22:33:49.951Z","avatar_url":"https://github.com/joleksia.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ft_nm - list symbols from object files\n\n## Getting Started:\n\n`ft_nm` is a re-implementation of `nm`, GNU utility for listing ELF-file symbol tables.\nIt behaves almost exactly like a regular `nm`, with support for:\n\n- `-h`, `-V`, `-a`, `-g`, `-u`, `-r`, `-p` flags\n- reading ELF object and executable files\n\nFor more information refer to `man 1 nm`.\n\n## Compilation:\n\nThis project is made for 42 advanced core curriculum and follows general guidelines for C/C++ projects.\n\nProject is completely dependent only on:\n- C Standard Library.\n- libft - 42network's C standard library.\n\nFor compilation there's GNU Makefile providing following rules:\n- `make all` - standard rule for performing all the compilation steps\n- `make re`  - rule for re-compiling whole project (including dependencies)\n- `make clean` - rule for removing all the compilation artifacts\n- `make fclean` - ruke for removing all the compilation results (artifacts + binaries)\n\nTo compile the project you can simply type:\n\n```tty\n$ make all\n```\n\n## Testing:\n\nGNU Makefile provides a simple testing rule: `make test`.\nIt's role is to test our `ft_nm` output with standard `nm` output. If output matches one-to-one then everything works fine.\nIf output doesn't match then probably this project isn't implemented correctly and requires solid re-evaluation.\n\nYou can test the project against the `ft_nm` binary itself by simply typing:\n\n```tty\n$ make test\n```\n\nYou can also test the project against any other binary on the system by typing:\n\n```tty\n$ make test TEST_FILES={ file(s) }\n```\n\nTo test the project against certain options type:\n\n```tty\n$ make test TEST_FLAGS={ flag(s) }\n```\n\nLastly, you can freely mix those options together:\n\n```tty\n$ make test TEST_FLAGS={ flag(s) } TEST_FILES={ file(s) }\n```\n\n## Sources:\n\n- [TheCoreArtist/elf-parser](https://github.com/TheCodeArtist/elf-parser/tree/master)\n- [elf_format_cheatsheet.md](https://gist.github.com/x0nu11byt3/bcb35c3de461e5fb66173071a2379779)\n- [Executable and Linkable Format](https://en.wikipedia.org/wiki/Executable_and_Linkable_Format)\n\n## LICENCE\n\nThis project is licenced under the [GNU LESSER GENERAL PUBLIC LICENCE](./LICENCE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoleksia%2F42-nm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoleksia%2F42-nm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoleksia%2F42-nm/lists"}