{"id":13782839,"url":"https://github.com/JonasDann/Brainfucker","last_synced_at":"2025-05-11T16:33:09.590Z","repository":{"id":92557647,"uuid":"21288959","full_name":"JonasDann/Brainfucker","owner":"JonasDann","description":"Brainfuck interpreter in C","archived":false,"fork":false,"pushed_at":"2017-02-22T21:10:49.000Z","size":39,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-18T02:18:37.598Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JonasDann.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}},"created_at":"2014-06-27T20:54:04.000Z","updated_at":"2017-08-14T20:18:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"d4438e4d-7375-4cf1-94a4-3ef96a8cf151","html_url":"https://github.com/JonasDann/Brainfucker","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/JonasDann%2FBrainfucker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JonasDann%2FBrainfucker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JonasDann%2FBrainfucker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JonasDann%2FBrainfucker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JonasDann","download_url":"https://codeload.github.com/JonasDann/Brainfucker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253595970,"owners_count":21933484,"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":[],"created_at":"2024-08-03T18:01:45.941Z","updated_at":"2025-05-11T16:33:09.284Z","avatar_url":"https://github.com/JonasDann.png","language":"C","funding_links":[],"categories":["C"],"sub_categories":[],"readme":"Brainfucker\n=========\n\nBrainfuck interpreter implemented in C\n\nUsage\n-----\n\nThe programm has one argument that is the file which contains the brainfuck code to implement.\n\nBrainfuck\n---------\n\nBrainfuck is an esoteric programming language noted for its extreme minimalism. The language consists of only eight simple commands and an instruction pointer. It is a Turing tarpit, designed to challenge and amuse programmers, and was not made to be suitable for practical use. It was created in 1993 by Urban Müller.\n\nCode:\n\n| token | meaning |\n|:-----:| ------- |\n| \u003e | increment the data pointer (to point to the next cell to the right). |\n| \u003c | decrement the data pointer (to point to the next cell to the left). |\n| + | increment (increase by one) the byte at the data pointer. |\n| - | decrement (decrease by one) the byte at the data pointer. |\n| . | output the byte at the data pointer. |\n| , | accept one byte of input, storing its value in the byte at the data pointer. |\n| [ | if the byte at the data pointer is zero, then instead of moving the instruction pointer forward to the next command, jump it forward to the command after the matching ] command. |\n| ] | if the byte at the data pointer is nonzero, then instead of moving the instruction pointer forward to the next command, jump it back to the command after the matching [ command. |\n\nCompilation\n-----------\n\n**Linux:**\n\nTo compile under linux you have to link it with the ncurses libary (gcc main_linux.c -lncurses) that has to be installed on the computer.\n\n**Windows:**\n\nTo compile under windows just compile the main_windows.c. The windows version uses the standard conio.h header.\n\nPlanned features:\n-----------------\n\n - Ook interpreter\n - Ook to brainfuck and other way around transpiler \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJonasDann%2FBrainfucker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FJonasDann%2FBrainfucker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJonasDann%2FBrainfucker/lists"}