An open API service indexing awesome lists of open source software.

https://github.com/thutasann/c-tools

building tools in C
https://github.com/thutasann/c-tools

c ncurses nodejs-addon text-editor web-server

Last synced: about 2 months ago
JSON representation

building tools in C

Awesome Lists containing this project

README

        

# Building Tools in C

In this repo, Tools, Native Libraries, Addons will be created with C.

## Table of Contents

| Topic | Source |
| --------- | -------------------------- |
| Notes | [Source](./docs/README.md) |
| Scripts | [Source](#scripts) |
| Resources | [Source](#resources) |

## Tools

| Tools | Source |
| ----------------------- | --------------------------------------- |
| First Text Editor | [Source](./src/first-editor) |
| Simple Nodejs Addon | [Source](./src/simple_nodejs_addon) |
| Web Server from scratch | [Source](./src/web_server_from_scratch) |

## Scripts

**Run Simple Text Editor:**

```bash
make clean && make run PROJECT=first-editor
```

**Run Web Server from Scratch**

```bash
make clean && make run PROJECT=web_server_from_scratch
```

**display the exit status of the last executed command**

```bash
echo $?
```

## Resources

- [Article](https://viewsourcecode.org/snaptoken/kilo/)
- [Ncurses](https://ftp.gnu.org/pub/gnu/ncurses/)