From 66a153c5012f0237bdf67b79b5cc6b2f5f496879 Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Thu, 24 Oct 2024 23:14:18 +0200 Subject: Initial draft for v2 This is a rewrite of v1 using arena's as memory allocators. The other great difference is using wide strings by default (wchar_t) because that will be needed in the future to print pretty UIs. --- v2/build.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 v2/build.sh (limited to 'v2/build.sh') diff --git a/v2/build.sh b/v2/build.sh new file mode 100755 index 0000000..53e6e14 --- /dev/null +++ b/v2/build.sh @@ -0,0 +1,16 @@ +#!/bin/sh +build () { + ( + set -x + gcc -ggdb -Wall -pedantic -std=c99 -o ${1%.c} $@ + ) +} + +if [ "$1" ]; then + build "$1" + exit +fi + +build chatty.c +build server.c +build send.c -- cgit v1.2.3