-
Notifications
You must be signed in to change notification settings - Fork 0
initdos
Thomas Foster edited this page Mar 22, 2021
·
2 revisions
Function Initialize LibDOS.
Syntax void initdos(void);
Prototype in dos.h
Return value None.
See also quitdos
initdos initializes LibDOS. This should usually be called at the start of the program after any initialization options, such as setscreensize.
/* custom initialization */
textmode(C40);
setscreensize(20, 20);
setcursor(CURSOR_NONE);
initdos();