mirror of
https://github.com/0intro/conterm
synced 2024-11-22 13:51:34 +03:00
11 lines
188 B
C
11 lines
188 B
C
|
#include <u.h>
|
||
|
#include <libc.h>
|
||
|
#include <draw.h>
|
||
|
#include <memdraw.h>
|
||
|
|
||
|
int
|
||
|
cloadmemimage(Memimage *i, Rectangle r, uchar *data, int ndata)
|
||
|
{
|
||
|
return _cloadmemimage(i, r, data, ndata);
|
||
|
}
|