ion: first pass at stretchy buffers.

However, len is expressed as number of elements, and capacity as
number of bytes.
This commit is contained in:
2018-03-15 13:43:46 -07:00
parent 5f5c4ac7ae
commit 39937b6c00
3 changed files with 128 additions and 0 deletions

12
bitwise/ion/Makefile Normal file
View File

@@ -0,0 +1,12 @@
TARGET := ion
OBJS := $(TARGET).o
CFLAGS := -g
all: $(TARGET)
$(TARGET): $(OBJS)
$(CC) $(CFLAGS) -o $@ $(OBJS)
.PHONY: clean
clean:
rm -f $(OBJS) $(TARGET)