kprint moved out from base

This commit is contained in:
timerix 2022-10-24 04:39:18 +06:00
parent 66935ae437
commit d270554dfa
9 changed files with 7 additions and 7 deletions

View File

@ -9,7 +9,6 @@ extern "C" {
#include "cptr.h" #include "cptr.h"
#include "optime.h" #include "optime.h"
#include "type_system/type_system.h" #include "type_system/type_system.h"
#include "kprint/kprint.h"
#if __cplusplus #if __cplusplus
} }

View File

@ -1,6 +1,6 @@
#include "base_toString.h" #include "base_toString.h"
#include "../cptr.h" #include "../cptr.h"
#include "../kprint/kprint_format.h" #include "../../kprint/kprint_format.h"
char* toString_int(int64 n){ char* toString_int(int64 n){
int64 d=n; int64 d=n;

View File

@ -1,5 +1,5 @@
#include "../base.h" #include "../String/StringBuilder.h"
#include "../../String/StringBuilder.h" #include "kprint.h"
ktId __typeFromFormat(kprint_format f){ ktId __typeFromFormat(kprint_format f){
ktId typeId=kprint_format_ktId(f); ktId typeId=kprint_format_ktId(f);

View File

@ -4,7 +4,7 @@
extern "C" { extern "C" {
#endif #endif
#include "../errors.h" #include "../base/errors.h"
#include "kprint_colors.h" #include "kprint_colors.h"
#include "kprint_format.h" #include "kprint_format.h"

View File

@ -4,8 +4,8 @@
extern "C" { extern "C" {
#endif #endif
#include "../std.h" #include "../base/std.h"
#include "../type_system/ktId.h" #include "../base/type_system/ktId.h"
typedef enum kprint_dataFormat{ typedef enum kprint_dataFormat{
// 00000000 00000000 00000000 00000000 // 00000000 00000000 00000000 00000000

View File

@ -1,4 +1,5 @@
#include "tests.h" #include "tests.h"
#include "../src/kprint/kprint.h"
#if defined(_WIN32)|| defined(_WIN64) #if defined(_WIN32)|| defined(_WIN64)
#include <windows.h> #include <windows.h>
#endif #endif