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

45 lines
1.1 KiB
C
Raw Normal View History

2016-10-17 08:57:44 -07:00
//-----------------------------------------------------------------------------
//
// Copyright © 2016 Project Golan
//
// See "LICENSE" for more information.
//
//-----------------------------------------------------------------------------
//
// Miscallaneous library functions.
//
//-----------------------------------------------------------------------------
#ifndef lithos3__Lth_stdlib_h
#define lithos3__Lth_stdlib_h
#define Lth_isidenti(c) \
(isalnum(c) || c == '_' || c == '$' || c == '\'' || c > 0x80)
2016-10-21 11:47:55 -07:00
// Post-for. Sort of.
#define Lth_pfor(cond, expr) while((cond) && ((expr), true))
2016-10-17 08:57:44 -07:00
2016-10-18 14:20:32 -07:00
// Extern Functions ----------------------------------------------------------|
2016-10-17 08:57:44 -07:00
// file
int Lth_fpeekc(FILE *fp);
// str
2016-10-17 08:57:44 -07:00
char *Lth_strdup(char const *s);
char *Lth_strdup_str(__str s);
__str Lth_strentdup(char const *s);
__str Lth_strlocal(__str s);
char *Lth_strealoc(char *p, char const *s);
char *Lth_strealoc_str(char *p, __str s);
bool Lth_strcontains(char const *s, char ch);
// Print
2016-10-17 08:57:44 -07:00
void Lth_PrintString(char const *s);
2016-10-19 07:03:32 -07:00
// Hash
size_t Lth_Hash_char(char const *s);
size_t Lth_Hash_str(char __str_ars const *s);
2016-10-19 07:03:32 -07:00
2016-10-17 08:57:44 -07:00
#endif//lithos3__Lth_stdlib_h