dos_compilers/Manx Aztec C86 v52a/LIB/SCREEN/SCR_EOL.C
2024-07-02 08:25:54 -07:00

16 lines
231 B
C

/* Copyright (C) 1984 by Manx Software Systems, Inc. */
/*
* Clear to the end of line
*/
extern int _attrib;
scr_eol()
{
int lin, col;
scr_loc(&lin, &col);
scr_call(0x920, _attrib, 80-col, 0);
return(0);
}