42 lines
1.2 KiB
C
42 lines
1.2 KiB
C
#ifndef CRASHPOWEROS_COMMON_H
|
|
#define CRASHPOWEROS_COMMON_H
|
|
|
|
#define OS_NAME "CoolPotOS"
|
|
#define OS_VERSION "v0.2.4"
|
|
|
|
#define LONG_MAX 9223372036854775807L
|
|
#define LONG_MIN -9223372036854775808L
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <stdarg.h>
|
|
|
|
typedef int bool;
|
|
|
|
void assert(int b,char* message);
|
|
size_t strlen(const char* str);
|
|
int strcmp(const char *s1, const char *s2);
|
|
char *strcpy(char *dest, const char *src);
|
|
char* strcat(char *dest, const char*src);
|
|
size_t strnlen(const char *s, size_t maxlen);
|
|
void trim(char *s);
|
|
int isspace(int c);
|
|
int isdigit(int c);
|
|
int isalpha(int c);
|
|
int isupper(int c);
|
|
char *int32_to_str_dec(int32_t num, int flag, int width);
|
|
char *int64_to_str_dec(int64_t num, int flag, int width);
|
|
char *uint32_to_str_hex(uint32_t num, int flag, int width);
|
|
char *uint64_to_str_hex(uint64_t num, int flag, int width);
|
|
char *uint32_to_str_oct(uint32_t num, int flag, int width);
|
|
char *insert_str(char *buf, const char *str);
|
|
int vsprintf(char *buf, const char *fmt, va_list args);
|
|
int sprintf(char *buf, const char *fmt, ...);
|
|
long int strtol(const char *str,char **endptr,int base);
|
|
|
|
void reset_kernel();
|
|
void shutdown_kernel();
|
|
uint32_t memory_all();
|
|
|
|
#endif //CRASHPOWEROS_COMMON_H
|