AldeBasiClib/AldeBasiClib.c

17 lines
253 B
C

#include "MonochromeLib.h"
#include "AldeBasiClib.h"
void PlotChg(int x, int y)
{
if(PlotTest(x,y) == ML_BLACK)PlotOff(x,y);
else PlotOn(x,y);
}
void PxlChg(int x, int y)
{
if(PxlTest(x,y) == ML_BLACK)PxlOff(x,y);
else PxlOn(x,y);
}