31 lines
654 B
C
31 lines
654 B
C
|
/*
|
||
|
* trigo.c
|
||
|
*
|
||
|
* nouveau Thu 15 Sep 2022 09:33:53 PM CEST
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#ifdef NEED_ALLOCA_H
|
||
|
#include <alloca.h>
|
||
|
#endif
|
||
|
|
||
|
#include "../tthimage.h"
|
||
|
|
||
|
/*::------------------------------------------------------------------::*/
|
||
|
Image_cos010(Image_Desc *src, Image_Desc *dst)
|
||
|
{
|
||
|
int foo;
|
||
|
|
||
|
if ( (foo=Image_compare_desc(src, dst)) ) {
|
||
|
fprintf(stderr, "%s: images not compatible, %d\n", __func__, foo);
|
||
|
return foo;
|
||
|
}
|
||
|
|
||
|
return FULL_NUCKED;
|
||
|
}
|
||
|
/*::------------------------------------------------------------------::*/
|
||
|
/*::------------------------------------------------------------------::*/
|