Like so --
find . -name "*.c" -or -name "*.h" -exec indent -nbfda -npcs -npsl -bli0 --no-tabs {} \;
The `indent` invocation differs from the last one noted in
CHANGES.txt (from 2006!?), in that I've added "--no-tabs",
to ensure indents are all space-based.
23 lines
465 B
C
23 lines
465 B
C
#ifndef GIFENC_H
|
|
#define GIFENC_H
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct ge_GIF
|
|
{
|
|
uint16_t w, h;
|
|
int depth;
|
|
int fd;
|
|
int offset;
|
|
int nframes;
|
|
uint8_t *frame, *back;
|
|
uint32_t partial;
|
|
uint8_t buffer[0xFF];
|
|
} ge_GIF;
|
|
|
|
ge_GIF *ge_new_gif(const char *fname, uint16_t width, uint16_t height,
|
|
uint8_t * palette, int depth, int loop);
|
|
void ge_add_frame(ge_GIF * gif, uint16_t delay);
|
|
void ge_close_gif(ge_GIF * gif);
|
|
|
|
#endif /* GIFENC_H */
|