Metadata-Version: 2.1
Name: bftc
Version: 1.0.0
Summary: Simple Brainfuck to C transpiler
Home-page: https://github.com/ilhomidin/bftc
License: UNKNOWN
Author: Ilxomidin Bakhoraliev
Author-email: itilhomidin@yandex.com
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License

# 🧠 Brainfuck to C transpiler

## Modules:

- `tokens` — contain all tokens
- `tokenizer` — contain `tokenize` function

```python
def tokenize(char: str) -> Token: ...
```

- `transpiler` — contain `transpile` function

```python
def transpile(token: Token) -> str: ...
```

- `code_generator` — contain `generate` function that generate valid C code from given tokens

```python
def generate(list[Token]) -> str: ...
```

## Install
```bash
pip install bftc
```

