Crates.io | nedry |
lib.rs | nedry |
version | 0.1.0 |
source | src |
created_at | 2024-03-18 13:05:43.069951 |
updated_at | 2024-03-18 13:05:43.069951 |
description | Small bundler for C |
homepage | |
repository | https://github.com/kAIYOHUGO/Nedry |
max_upload_size | |
id | 1177689 |
size | 48,548 |
You know anybody who can network 8 connection machine and debug 2 MILLION lines of code.
This is mainly use for competitive programming & CS class.
Most online judge system used in collage only accept C without dependency.
This tool will auto replace #include
with actual code.
Support List
#include "file_here"
#include "file_here.h"
will also try to include file_here.c
Know Limitation
#include
correctly in some nest macro (#if
/#ifdef
)To bundle test.c
to test.bundle.c
run
nedry -i test.c bundle -o test.bundle.c
Command list
$ nedry
Usage: nedry --input <INPUT> <COMMAND>
Commands:
bundle Bundle all dependency to single file
build Build file to an executable file
run Build & Run file
help Print this message or the help of the given subcommand(s)
Options:
-i, --input <INPUT> The entry point file
-h, --help Print help (see more with '--help')