aboutsummaryrefslogtreecommitdiff
path: root/header.h
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-08-27 15:30:51 +0200
committerCharles <sircharlesaze@gmail.com>2019-08-27 15:30:51 +0200
commit60adb6e2f051ab72fb66541a8f48ef195317d403 (patch)
treed9cf1c7c689a5871cb2c434958787c5b75fd7e10 /header.h
downloadmandelbrot_cpu-60adb6e2f051ab72fb66541a8f48ef195317d403.tar.gz
mandelbrot_cpu-60adb6e2f051ab72fb66541a8f48ef195317d403.tar.bz2
mandelbrot_cpu-60adb6e2f051ab72fb66541a8f48ef195317d403.zip
Initial commit
Compute if a number is in Mandelbrot set. Print it to the terminal.
Diffstat (limited to 'header.h')
-rw-r--r--header.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/header.h b/header.h
new file mode 100644
index 0000000..e46ce7e
--- /dev/null
+++ b/header.h
@@ -0,0 +1,9 @@
+#ifndef HEADER_H
+# define HEADER_H
+
+#include <complex.h>
+
+double mandelbrot_in_set(double complex c);
+void mandelbrot_print(void);
+
+#endif