No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 

14 líneas
649 B

  1. #include "common.h"
  2. #include "offsets.h"
  3. #include "color.h"
  4. int mapOverlay(char *filename, rgb_t **crow, int nrow, int zenith, int MCIR);
  5. int readRawImage(char *filename, float **prow, int *nrow);
  6. int readPalette(char *filename, rgb_t **pixels);
  7. void prow2crow(float **prow, int nrow, char *palette, rgb_t **crow);
  8. int applyUserPalette(float **prow, int nrow, char *filename, rgb_t **crow);
  9. int ImageOut(options_t *opts, image_t *img, int offset, int width, char *desc, char chid, char *palette);
  10. int initWriter(options_t *opts, image_t *img, int width, int height, char *desc, char *chid);
  11. void pushRow(float *row, int width);
  12. void closeWriter();