cosmetic
This commit is contained in:
parent
5f61f21362
commit
3f1f5fc49b
@ -189,7 +189,7 @@ int foo, bar;
|
|||||||
int iter;
|
int iter;
|
||||||
|
|
||||||
#if DEBUG_LEVEL
|
#if DEBUG_LEVEL
|
||||||
fprintf(stderr, ">> %s ( %p, %d, 0x%x )\n", __func__, img, nbre, k);
|
fprintf(stderr, ">>> %s ( %p, %d, 0x%x )\n", __func__, img, nbre, k);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
iter = 0; /* safe value */
|
iter = 0; /* safe value */
|
||||||
|
@ -136,7 +136,7 @@ for (foo=0; foo<4; foo++)
|
|||||||
|
|
||||||
*pvalue = value;
|
*pvalue = value;
|
||||||
|
|
||||||
return FUNC_IS_BETA;
|
return FUNC_IS_BETA; /* XXX ? */
|
||||||
}
|
}
|
||||||
/*::------------------------------------------------------------------::*/
|
/*::------------------------------------------------------------------::*/
|
||||||
int Image_basicIO_write_I_long(FILE *fp, long value)
|
int Image_basicIO_write_I_long(FILE *fp, long value)
|
||||||
|
@ -89,8 +89,8 @@ int dx, dy, ix, iy, inc;
|
|||||||
int foo, plotx, ploty, x, y;
|
int foo, plotx, ploty, x, y;
|
||||||
int plot;
|
int plot;
|
||||||
|
|
||||||
#if DEBUG_LEVEL > 1
|
#if DEBUG_LEVEL
|
||||||
printf("%s %4d %4d -----> %4d %4d\n", __func__, x1, y1, x2, y2);
|
printf(">>> %s ( %p %4d %4d %4d %4d\n", __func__, i, x1, y1, x2, y2);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
dx = x2 - x1; dy = y2 - y1;
|
dx = x2 - x1; dy = y2 - y1;
|
||||||
|
@ -155,7 +155,7 @@ putc('\n', stderr);
|
|||||||
|
|
||||||
void Image_warning(char caractere, char *lig1, char *lig2, int k)
|
void Image_warning(char caractere, char *lig1, char *lig2, int k)
|
||||||
{
|
{
|
||||||
int len1, len2, len, foo;
|
int len1, len2, len;
|
||||||
|
|
||||||
len1 = len2 = 0;
|
len1 = len2 = 0;
|
||||||
if (NULL != lig1) len1 = strlen(lig1);
|
if (NULL != lig1) len1 = strlen(lig1);
|
||||||
|
30
Lib/trigo.c
30
Lib/trigo.c
@ -1,30 +0,0 @@
|
|||||||
/*
|
|
||||||
* 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;
|
|
||||||
}
|
|
||||||
/*::------------------------------------------------------------------::*/
|
|
||||||
/*::------------------------------------------------------------------::*/
|
|
Loading…
Reference in New Issue
Block a user