diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2013-12-21 23:09:09 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2014-01-18 13:43:52 +0100 |
commit | 3522c68dcd38e3eef393771d65aff6de2f815da3 (patch) | |
tree | abe4ba88238482dbfb6fdebcded3f5c3626d1c7d /Makefile | |
parent | 9f25faad5fe732e498942818dc45de78ce7f3766 (diff) |
rb: add ascii support
in order to be able to deal with strings (i.e null terminated), we
provide a new set of functions
rb_puts
rb_printf / rb_vprintf
rb_gets / rb_gets2
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ CFLAGS += -W -Wall -std=c99 -Wextra CFLAGS += -I./ CFLAGS += -D _GNU_SOURCE NAME = librb.a -SRC = src/rb.c +SRC = src/rb.c src/rb_str.c AR = ar rc |