Login
7 branches 0 tags
Ben (RPI 4) Improved exceptions, invalid literals now throw f959314 4 years ago 141 Commits
nujel / lib / collection / string.h
#pragma once
#include "../nujel.h"

lString *lStringNew       (const char *str, uint len);
lString *lStringNewNoCopy (const char *str, uint len);
lString *lStringDup       (      lString *s);
int      lStringLength    (const lString *s);
lVal    *lValString       (const char *s);
lVal    *lValStringNoCopy (const char *s, int len);