buddhabrot/src/ppm.h

11 lines
160 B
C
Raw Normal View History

2020-11-10 16:31:32 +01:00
#ifndef PPM_H
#define PPM_H
#include <stdio.h>
struct image; // Forward declaration
void print_ppm(const struct image *image, FILE *f);
#endif /* !PPM_H */