1
0
Fork 0
LithOS3/lithos_c/inc/Lth_stdlib.h

40 lines
975 B
C

//-----------------------------------------------------------------------------
//
// Copyright © 2016 Project Golan
//
// See "LICENSE" for more information.
//
//-----------------------------------------------------------------------------
//
// Miscallaneous library functions.
//
//-----------------------------------------------------------------------------
#ifndef lithos3__Lth_stdlib_h
#define lithos3__Lth_stdlib_h
#include <stdbool.h>
#define Lth_isidenti(ch) \
(isalpha(ch) || isdigit(ch) || ch == '_' || ch == '$' || ch == '\'')
// Post-for. Sort of.
#define Lth_pfor(cond, expr) while((cond) && ((expr), true))
// Extern Functions ----------------------------------------------------------|
// str
char *Lth_strdup(char const *s);
char *Lth_strdup_str(__str s);
__str Lth_strentdup(char const *s);
__str Lth_strlocal(__str s);
// Print
void Lth_PrintString(char const *s);
// Hash
size_t Lth_Hash_char(char const *s);
#endif//lithos3__Lth_stdlib_h