{"id":18268591,"url":"https://github.com/viral32111/brainfuck-interpreter","last_synced_at":"2026-07-10T00:31:17.449Z","repository":{"id":133672013,"uuid":"313970895","full_name":"viral32111/brainfuck-interpreter","owner":"viral32111","description":"A rudimentary interpreter for the Brainfuck programming language.","archived":false,"fork":false,"pushed_at":"2020-12-23T19:51:36.000Z","size":7,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-14T21:27:05.950Z","etag":null,"topics":["brainfuck","c","interpreter"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/viral32111.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}},"created_at":"2020-11-18T15:08:04.000Z","updated_at":"2020-12-18T16:14:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"b13acdea-1dce-4651-9aa1-d040dea27cfe","html_url":"https://github.com/viral32111/brainfuck-interpreter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viral32111%2Fbrainfuck-interpreter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viral32111%2Fbrainfuck-interpreter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viral32111%2Fbrainfuck-interpreter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viral32111%2Fbrainfuck-interpreter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/viral32111","download_url":"https://codeload.github.com/viral32111/brainfuck-interpreter/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247968239,"owners_count":21025797,"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":["brainfuck","c","interpreter"],"created_at":"2024-11-05T11:32:17.953Z","updated_at":"2025-10-30T15:39:40.450Z","avatar_url":"https://github.com/viral32111.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Brainfuck Interpreter\n\nA rudimentary interpreter for the [Brainfuck](https://en.wikipedia.org/wiki/Brainfuck) programming language.\n\nStill in-development, do not expect usability.\n\n## Instructions\n\nBelow is a table that shows each Brainfuck instruction and describes what it does.\n\n| Instruction | C equivalent      | Description |\n| :---------: | :---------------: | ----------- |\n| `\u003e`         | `++ptr;`          | Increment data pointer (to point to the next cell in the right). |\n| `\u003e`         | `--ptr;`          | Decrement data pointer (to pont to the next cell to the left). |\n| `-`         | `--*ptr;`         | Decrement the byte at the data pointer. |\n| `+`         | `++*ptr;`         | Increment the byte at the data pointer. |\n| `.`         | `putchar(*ptr);`  | Output the byte at the data pointer. |\n| `,`         | `*ptr=getchar();` | Accept one byte of input, storing its value in the byte at the data pointer. |\n| `[`         | `while(*ptr){`    | If the byte at the data pointer is zero, jump it forward to the command after the matching `]`. |\n| `]`         | `}`               | If the byte at the data pointer is non-zero, jump it back to the command after the matching `[`. |\n\n## License\n\nThis is free and unencumbered software released into the public domain.\n\nAnyone is free to copy, modify, publish, use, compile, sell, or\ndistribute this software, either in source code form or as a compiled\nbinary, for any purpose, commercial or non-commercial, and by any\nmeans.\n\nIn jurisdictions that recognize copyright laws, the author or authors\nof this software dedicate any and all copyright interest in the\nsoftware to the public domain. We make this dedication for the benefit\nof the public at large and to the detriment of our heirs and\nsuccessors. We intend this dedication to be an overt act of\nrelinquishment in perpetuity of all present and future rights to this\nsoftware under copyright law.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR\nOTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\nFor more information, please refer to \u003chttp://unlicense.org/\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fviral32111%2Fbrainfuck-interpreter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fviral32111%2Fbrainfuck-interpreter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fviral32111%2Fbrainfuck-interpreter/lists"}