os-k/src/kaleid/include/kalcrt.h

198 lines
4.8 KiB
C
Raw Normal View History

2018-12-31 10:49:08 +01:00
//----------------------------------------------------------------------------//
// GNU GPL OS/K //
// //
// Authors: spectral` //
// NeoX //
// //
2019-01-01 13:09:57 +01:00
// Desc: Kaleid C runtime library //
2018-12-31 10:49:08 +01:00
//----------------------------------------------------------------------------//
2019-01-01 13:09:57 +01:00
#ifndef _KALCRT_H
#define _KALCRT_H
2018-12-31 10:49:08 +01:00
2019-01-01 13:09:57 +01:00
//------------------------------------------//
// Typedefs //
//------------------------------------------//
#ifndef __size_t
#define __size_t
typedef unsigned long size_t;
#endif
2019-01-01 17:11:30 +01:00
#ifndef __status_t
#define __status_t
typedef signed long status_t;
#endif
2019-01-01 13:09:57 +01:00
#ifndef __va_list
#define __va_list
typedef __builtin_va_list va_list;
#endif
2019-01-01 17:11:30 +01:00
#ifndef __div_t
#define __div_t
typedef struct { int quot, rem; } div_t;
#endif
#ifndef __ldiv_t
#define __ldiv_t
typedef struct { long quot, rem; } ldiv_t;
2019-01-01 13:09:57 +01:00
#endif
//------------------------------------------//
// Macros //
//------------------------------------------//
2018-12-31 10:49:08 +01:00
2019-01-01 13:09:57 +01:00
#ifndef _NO_MASK
#define _NO_MASK
2018-12-31 10:49:08 +01:00
#endif
//------------------------------------------//
2019-01-01 13:09:57 +01:00
// va_list utilities //
2018-12-31 10:49:08 +01:00
//------------------------------------------//
2019-01-01 13:09:57 +01:00
#ifndef va_start
#define va_start __builtin_va_start
2018-12-31 10:49:08 +01:00
#endif
2019-01-01 17:11:30 +01:00
#ifndef va_arg
#define va_arg __builtin_va_arg
#endif
2019-01-01 13:09:57 +01:00
#ifndef va_next
#define va_next __builtin_va_next
#endif
#ifndef va_end
#define va_end __builtin_va_end
#endif
//------------------------------------------//
// Memory management utilities //
//------------------------------------------//
2019-01-02 17:19:13 +01:00
#ifndef memsetb
#define memsetb memset
2019-01-01 17:11:30 +01:00
#endif
2019-01-02 17:19:13 +01:00
#ifndef memchrb
#define memchrb memchr
2019-01-01 13:09:57 +01:00
#endif
2019-01-01 17:11:30 +01:00
2019-01-02 17:19:13 +01:00
void *memset(void *, int, size_t);
2019-01-01 17:40:48 +01:00
void *memsetw(void *, int, size_t);
void *memsetd(void *, int, size_t);
void *memsetq(void *, long, size_t);
2018-12-31 15:08:56 +01:00
2019-01-02 17:19:13 +01:00
void *memchr(const void *, int, size_t);
2019-01-01 17:40:48 +01:00
void *memchrw(const void *, int, size_t);
void *memchrd(const void *, int, size_t);
void *memchrq(const void *, long, size_t);
2019-01-01 17:11:30 +01:00
2019-01-01 17:40:48 +01:00
void *memcpy(void *, const void *, size_t);
void *memmove(void *, const void *, size_t);
2019-01-01 17:11:30 +01:00
2019-01-01 17:40:48 +01:00
void *memzero(void *, size_t);
int memcmp(const void *, const void *, size_t);
2018-12-31 10:49:08 +01:00
//------------------------------------------//
2019-01-01 13:09:57 +01:00
// String manipulation utilities //
2018-12-31 10:49:08 +01:00
//------------------------------------------//
2019-01-01 17:40:48 +01:00
size_t strlen(const char *);
char *strcpy(char *, const char *);
char *strncpy(char *, const char *, size_t);
char *strrev(char *, const char *);
char *reverse(char *);
2018-12-31 10:49:08 +01:00
2019-01-01 17:40:48 +01:00
int sprintf(char *, const char *, ...);
int snprintf(char *, size_t, const char *, ...);
int vsprintf(char *, const char *, va_list);
int vsnprintf(char *, size_t, const char *, va_list);
2018-12-31 10:49:08 +01:00
//------------------------------------------//
// Type conversion utilities //
//------------------------------------------//
2019-01-01 17:40:48 +01:00
int *atoi(const char *);
long *atol(const char *);
2019-01-01 17:11:30 +01:00
2019-01-01 17:40:48 +01:00
char *itoa(int, char *, int);
char *ltoa(long, char *, int);
2019-01-01 17:11:30 +01:00
2019-01-01 17:40:48 +01:00
char *utoa(unsigned int, char *, int);
char *ultoa(unsigned long, char *, int);
2019-01-01 17:11:30 +01:00
long strtol(const char *, char **, int);
unsigned long strtoul(const char *, char **, int);
//------------------------------------------//
// RNG utilities //
//------------------------------------------//
int rand(void);
void srand(unsigned int);
2018-12-31 10:49:08 +01:00
//------------------------------------------//
2019-01-01 13:09:57 +01:00
// Diverse utilities //
//------------------------------------------//
const char *describe_status(status_t) _NO_MASK;
2019-01-01 17:11:30 +01:00
//------------------------------------------//
// Arithmetical macros //
//------------------------------------------//
#ifndef abs
#define abs(x) ((x) < 0 ? -x : x)
#endif
#ifndef labs
#define labs(x) ((x) < 0 ? -x : x)
#endif
#ifndef min
#define min(x,y) ((x) < (y) ? (x) : (y))
#endif
#ifndef lmin
#define lmin(x,y) ((x) < (y) ? (x) : (y))
#endif
#ifndef max
#define max(x,y) ((x) < (y) ? (x) : (y))
#endif
#ifndef lmax
#define lmax(x,y) ((x) < (y) ? (x) : (y))
#endif
#ifndef __div
#define __div
static inline div_t div(int __x, int __y)
{
div_t __res;
__res.quot = __x/__y;
__res.rem = __x%__y;
return __res;
}
#endif
#ifndef __ldiv
#define __ldiv
static inline ldiv_t ldiv(long __x, long __y)
{
ldiv_t __res;
__res.quot = __x/__y;
__res.rem = __x%__y;
return __res;
}
#endif
2019-01-01 13:09:57 +01:00
//------------------------------------------//
// End of <kalcrt.h> //
2018-12-31 10:49:08 +01:00
//------------------------------------------//
#endif