FloatImg/lib/alphachan.c

24 lines
519 B
C
Raw Normal View History

2022-07-11 06:12:25 +02:00
/*
* alphachan.c
*/
#include <stdio.h>
#include <stdint.h>
#include <sys/time.h>
#include "../floatimg.h"
extern int verbosity; /* must be declared around main() */
/* ---------------------------------------------------------------- */
int fimg_add_alpha_chan(FloatImg *img)
{
return -4;
}
/* ---------------------------------------------------------------- */
int fimg_kill_alpha_chan(FloatImg *img)
{
return -4;
}
/* ---------------------------------------------------------------- */