{"id":13782523,"url":"https://github.com/tkovs/cbrainfuck","last_synced_at":"2025-10-27T08:31:35.775Z","repository":{"id":27368950,"uuid":"30844449","full_name":"tkovs/cbrainfuck","owner":"tkovs","description":":curly_loop: A brainfuck interpreter made in C.","archived":false,"fork":false,"pushed_at":"2020-11-10T18:14:42.000Z","size":320,"stargazers_count":3,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-12-19T14:32:41.227Z","etag":null,"topics":["brainfuck","brainfuck-interpreter","c","first-project"],"latest_commit_sha":null,"homepage":"","language":"C","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/tkovs.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}},"created_at":"2015-02-15T22:19:12.000Z","updated_at":"2020-11-10T18:14:45.000Z","dependencies_parsed_at":"2022-07-24T15:01:54.026Z","dependency_job_id":null,"html_url":"https://github.com/tkovs/cbrainfuck","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/tkovs%2Fcbrainfuck","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkovs%2Fcbrainfuck/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkovs%2Fcbrainfuck/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkovs%2Fcbrainfuck/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tkovs","download_url":"https://codeload.github.com/tkovs/cbrainfuck/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238470180,"owners_count":19477790,"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","brainfuck-interpreter","c","first-project"],"created_at":"2024-08-03T18:01:38.514Z","updated_at":"2025-10-27T08:31:30.497Z","avatar_url":"https://github.com/tkovs.png","language":"C","funding_links":[],"categories":["C"],"sub_categories":[],"readme":"cbrainfuck\n=====\n[![Build Status](https://travis-ci.org/tkovs/cbrainfuck.svg?branch=master)](https://travis-ci.org/tkovs/cbrainfuck)\n[![Issues](https://img.shields.io/github/issues/tkovs/cbrainfuck.svg)](https://github.com/tkovs/cbrainfuck/issues)\n[![Licence](https://img.shields.io/badge/licence-MIT-red.svg?style=flat)](LICENCE)\n\n`cbrainfuck` is a brainfuck interpreter written in C\n\n\u003e Detail: This is the project I chose to do just as a way to learn how to use git and github, so all I want to test about project management tools and git/github I will do here\n\n## Example\n\n```cpp\n#include \u003cstdio.h\u003e\n#include \u003cstdlib.h\u003e\n\n#include \"include/cbrainfuck.h\"\n\n// argv[1] should be the cbrainfuck code file\n// argv[2] should be the input file\nint main(int argc, char **argv) {\n    char *s;\n    s = interpreter(argv[1], (argc \u003e 2 ? argv[2] : \"/dev/stdin\"));\n\n    if (_ERRORS_) {\n        fprintf(stderr, \"%s\\n\", _MESSAGE_);\n        return 1;\n    } else {\n        printf (\"%s\", s);\n        free(s);\n    }\n\n    return 0;\n}\n```\n\n[Some sources](http://esoteric.sange.fi/brainfuck/)\n\n## Licence\n\nCopyright (c) 2015 Vitor Rodrigues (tkovs)\n\nReleased under the [MIT licence](https://github.com/tkovs/cbrainfuck/blob/master/LICENCE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftkovs%2Fcbrainfuck","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftkovs%2Fcbrainfuck","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftkovs%2Fcbrainfuck/lists"}