1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

Changed position and made function public

This commit is contained in:
Bowero 2019-06-26 18:56:33 +02:00 committed by Alexander Medvednikov
parent 7ff0e48434
commit 821c5934cc

10
os/os.v
View File

@ -449,6 +449,11 @@ pub fn write_file(path, text string) {
f.close()
}
pub fn clear() {
C.printf('\x1b[2J')
C.printf('\x1b[H')
}
fn on_segfault(f voidptr) {
$if windows {
return
@ -461,9 +466,4 @@ fn on_segfault(f voidptr) {
# sa.sa_flags = SA_SIGINFO;
# sigaction(SIGSEGV, &sa, 0);
}
}
fn clear() {
C.printf('\x1b[2J')
C.printf('\x1b[H')
}