Prototypes etc

pull/29/head
E. Almqvist 3 years ago
parent beb014a6b4
commit 0c3728863e
  1. 6
      kernel/kernel.c
  2. 9
      lib/strf.c
  3. 1
      lib/strf.h

@ -6,10 +6,4 @@ void main() {
set_cursor_pos(28, 2); set_cursor_pos(28, 2);
print("eOS Version 0.1 2021", 0xf0); print("eOS Version 0.1 2021", 0xf0);
/*
set_cursor_pos(0, 0);
for( int i = 0; i < 255; i++ )
println("X", i);
*/
} }

@ -0,0 +1,9 @@
#include "lib/strf.h"
#define int_offset 48
// 0:48 - 9:57
char* int_to_str(int i) {
char* strbuf;
double num = (double)i;
}

@ -0,0 +1 @@
char* int_to_str(int i);
Loading…
Cancel
Save