Add files via upload

This commit is contained in:
Nikhil Tomar
2019-11-18 22:03:07 +05:30
committed by GitHub
parent 1f392f4c2e
commit f9da606ce5
2 changed files with 14 additions and 0 deletions

8
user/taskbar/taskbar.c Normal file
View File

@ -0,0 +1,8 @@
#include "../../include/print.h"
void taskbar(){
print("\n");
char* user="User: root";
clearLine(ROWS-1, ROWS, 0x4f);
printLine(ROWS-1, ROWS, user, 0x4f);
}

6
user/taskbar/taskbar.h Normal file
View File

@ -0,0 +1,6 @@
#ifndef __TASKBAR_H__
#define __TASKBAR_H__
void taskbar();
#endif