18 lines
415 B
C
18 lines
415 B
C
|
|
#include "\projet\lib386\lib_sys\adeline.h"
|
|
#include "\projet\lib386\lib_sys\lib_sys.h"
|
|
|
|
#include <stdio.h>
|
|
#include <dos.h>
|
|
#include <i86.h>
|
|
|
|
void Rect( LONG x0, LONG y0, LONG x1, LONG y1, LONG coul )
|
|
{
|
|
Line( x0, y0, x1, y0, coul ) ;
|
|
Line( x0, y1, x1, y1, coul ) ;
|
|
Line( x0, y0, x0, y1, coul ) ;
|
|
Line( x1, y0, x1, y1, coul ) ;
|
|
}
|
|
|
|
/*ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ*/
|