buddhabrot/src/buddhabrot.h

11 lines
181 B
C
Raw Normal View History

2020-11-11 23:22:04 +01:00
#ifndef BUDDHABROT_H
#define BUDDHABROT_H
#include <stddef.h>
struct image; // Forward declaration
void buddhabrot(struct image *i, size_t max_iter);
#endif /* !BUDDHABROT_H */