buddhabrot/src/mandelbrot.h

11 lines
185 B
C
Raw Normal View History

2020-11-10 18:22:26 +01:00
#ifndef MANDELBROT_H
#define MANDELBROT_H
#include <stddef.h>
struct image; // Forward declaration
void mandelbrot(struct image *image, size_t max_iter);
#endif /* !MANDELBROT_H */