summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/benoit/archstr.hh6
-rw-r--r--include/benoit/arghandl.hh4
-rw-r--r--include/benoit/crtcfg.hh4
-rw-r--r--include/benoit/d/alpha.hh6
-rw-r--r--include/benoit/d/arch.hh18
-rw-r--r--include/benoit/d/cfg.hh7
-rw-r--r--include/benoit/d/debug.hh11
-rw-r--r--include/benoit/d/dobt.hh6
-rw-r--r--include/benoit/d/imgfmt.hh7
-rw-r--r--include/benoit/d/kernel.hh26
-rw-r--r--include/benoit/d/logdoprint.hh6
-rw-r--r--include/benoit/d/maxiter.hh6
-rw-r--r--include/benoit/d/numthrds.hh6
-rw-r--r--include/benoit/d/outimg.hh7
-rw-r--r--include/benoit/d/pos.hh7
-rw-r--r--include/benoit/d/printdolog.hh6
-rw-r--r--include/benoit/d/resx.hh6
-rw-r--r--include/benoit/d/resy.hh6
-rw-r--r--include/benoit/d/thelog.hh8
-rw-r--r--include/benoit/d/ver.hh6
-rw-r--r--include/benoit/err/clsfil.hh7
-rw-r--r--include/benoit/err/wrttofil.hh7
-rw-r--r--include/benoit/exit.hh6
-rw-r--r--include/benoit/helpscrn.hh4
-rw-r--r--include/benoit/kernelstr.hh6
-rw-r--r--include/benoit/loadcfg.hh4
-rw-r--r--include/benoit/log.hh6
-rw-r--r--include/benoit/logfunc.hh5
-rw-r--r--include/benoit/logfuncret.hh5
-rw-r--r--include/benoit/main.hh4
-rw-r--r--include/benoit/plotmandelbrot.hh6
-rw-r--r--include/benoit/print.hh5
-rw-r--r--include/benoit/t/arch.hh12
-rw-r--r--include/benoit/t/imgfmt.hh9
-rw-r--r--include/benoit/t/kernel.hh16
-rw-r--r--include/benoit/t/pos.hh12
-rw-r--r--include/benoit/t/rgba.hh13
-rw-r--r--include/benoit/t/thrddat.hh17
-rw-r--r--include/benoit/wrtimg.hh6
39 files changed, 0 insertions, 309 deletions
diff --git a/include/benoit/archstr.hh b/include/benoit/archstr.hh
deleted file mode 100644
index 3403d6a..0000000
--- a/include/benoit/archstr.hh
+++ /dev/null
@@ -1,6 +0,0 @@
-# pragma once
-# include <benoit/t/arch.hh>
-# include <string>
-namespace benoit {
- std::string archstr(benoit::t::arch arch) noexcept;
-}
diff --git a/include/benoit/arghandl.hh b/include/benoit/arghandl.hh
deleted file mode 100644
index 4060149..0000000
--- a/include/benoit/arghandl.hh
+++ /dev/null
@@ -1,4 +0,0 @@
-# pragma once
-namespace benoit {
- void arghandl(int const & argc,char const * * & argv);
-}
diff --git a/include/benoit/crtcfg.hh b/include/benoit/crtcfg.hh
deleted file mode 100644
index 957399e..0000000
--- a/include/benoit/crtcfg.hh
+++ /dev/null
@@ -1,4 +0,0 @@
-# pragma once
-namespace benoit {
- void crtcfg();
-}
diff --git a/include/benoit/d/alpha.hh b/include/benoit/d/alpha.hh
deleted file mode 100644
index 49f176b..0000000
--- a/include/benoit/d/alpha.hh
+++ /dev/null
@@ -1,6 +0,0 @@
-# pragma once
-namespace benoit {
- namespace d {
- bool extern alpha;
- }
-}
diff --git a/include/benoit/d/arch.hh b/include/benoit/d/arch.hh
deleted file mode 100644
index 71d8feb..0000000
--- a/include/benoit/d/arch.hh
+++ /dev/null
@@ -1,18 +0,0 @@
-# pragma once
-# include <benoit/t/arch.hh>
-namespace benoit {
- namespace d {
- benoit::t::arch constexpr arch =
-# if defined(__aarch64__)
- benoit::t::arch::aarch64;
-# elif (defined(_M_AMD64) || defined(__amd64) || defined(__amd64__) || defined(__x86_64) || defined(x86_64__))
- benoit::t::arch::amd64;
-# elif (defined(_IA64) defined(_M_IA64) || defined(__IA64__) || defined(__ia64__) || defined(__itanium__))
- benoit::t::arch::ia64;
-# elif (defined(_ARCH_PPC64) || defined(__powerpc64__) || defined(__PPC64__) || defined(__ppc64__))
- benoit::t::arch::ppc64;
-# else
- benoit::t::arch::unknown;
-# endif
- }
-}
diff --git a/include/benoit/d/cfg.hh b/include/benoit/d/cfg.hh
deleted file mode 100644
index e2b2bf5..0000000
--- a/include/benoit/d/cfg.hh
+++ /dev/null
@@ -1,7 +0,0 @@
-# pragma once
-# include <string>
-namespace benoit {
- namespace d {
- std::string extern cfg;
- }
-}
diff --git a/include/benoit/d/debug.hh b/include/benoit/d/debug.hh
deleted file mode 100644
index 015eb17..0000000
--- a/include/benoit/d/debug.hh
+++ /dev/null
@@ -1,11 +0,0 @@
-# pragma once
-namespace benoit {
- namespace d {
- bool constexpr debug =
-# if defined(NDEBUG)
- false;
-# else
- true;
-# endif
- }
-}
diff --git a/include/benoit/d/dobt.hh b/include/benoit/d/dobt.hh
deleted file mode 100644
index 149eabb..0000000
--- a/include/benoit/d/dobt.hh
+++ /dev/null
@@ -1,6 +0,0 @@
-# pragma once
-namespace benoit {
- namespace d {
- bool extern dobt;
- }
-}
diff --git a/include/benoit/d/imgfmt.hh b/include/benoit/d/imgfmt.hh
deleted file mode 100644
index 58bbc5f..0000000
--- a/include/benoit/d/imgfmt.hh
+++ /dev/null
@@ -1,7 +0,0 @@
-# pragma once
-# include <benoit/t/imgfmt.hh>
-namespace benoit {
- namespace d {
- benoit::t::imgfmt extern imgfmt;
- }
-}
diff --git a/include/benoit/d/kernel.hh b/include/benoit/d/kernel.hh
deleted file mode 100644
index b11d9a0..0000000
--- a/include/benoit/d/kernel.hh
+++ /dev/null
@@ -1,26 +0,0 @@
-# pragma once
-# include <benoit/t/kernel.hh>
-namespace benoit {
- namespace d {
- benoit::t::kernel constexpr kernel =
-# if (defined(Macintosh) || defined(macintosh) || defined(__APPLE__) || defined(__MACH__))
- benoit::t::kernel::darwinos;
-# elif defined(__DragonFly__)
- benoit::t::kernel::dragonflybsd;
-# elif defined(__FreeBSD__)
- benoit::t::kernel::freebsd;
-# elif (defined(__GNU__) || defined(__gnu_hurd__))
- benoit::t::kernel::hurd;
-# elif defined(__linux__)
- benoit::t::kernel::linux;
-# elif defined(__minix)
- benoit::t::kernel::minix;
-# elif defined(__NetBSD__)
- benoit::t::kernel::netbsd;
-# elif defined(__OpenBSD__)
- benoit::t::kernel::openbsd;
-# else
- benoit::t::kernel::unknown;
-# endif
- }
-}
diff --git a/include/benoit/d/logdoprint.hh b/include/benoit/d/logdoprint.hh
deleted file mode 100644
index 801c134..0000000
--- a/include/benoit/d/logdoprint.hh
+++ /dev/null
@@ -1,6 +0,0 @@
-# pragma once
-namespace benoit {
- namespace d {
- bool extern logdoprint;
- }
-}
diff --git a/include/benoit/d/maxiter.hh b/include/benoit/d/maxiter.hh
deleted file mode 100644
index 00fc555..0000000
--- a/include/benoit/d/maxiter.hh
+++ /dev/null
@@ -1,6 +0,0 @@
-# pragma once
-namespace benoit {
- namespace d {
- unsigned long long extern maxiter;
- }
-}
diff --git a/include/benoit/d/numthrds.hh b/include/benoit/d/numthrds.hh
deleted file mode 100644
index 459f994..0000000
--- a/include/benoit/d/numthrds.hh
+++ /dev/null
@@ -1,6 +0,0 @@
-# pragma once
-namespace benoit {
- namespace d {
- unsigned extern numthrds;
- }
-}
diff --git a/include/benoit/d/outimg.hh b/include/benoit/d/outimg.hh
deleted file mode 100644
index cfcd7df..0000000
--- a/include/benoit/d/outimg.hh
+++ /dev/null
@@ -1,7 +0,0 @@
-# pragma once
-# include <string>
-namespace benoit {
- namespace d {
- std::string extern outimg;
- }
-}
diff --git a/include/benoit/d/pos.hh b/include/benoit/d/pos.hh
deleted file mode 100644
index afaeb1d..0000000
--- a/include/benoit/d/pos.hh
+++ /dev/null
@@ -1,7 +0,0 @@
-# pragma once
-# include <benoit/t/pos.hh>
-namespace benoit {
- namespace d {
- benoit::t::pos extern pos;
- }
-}
diff --git a/include/benoit/d/printdolog.hh b/include/benoit/d/printdolog.hh
deleted file mode 100644
index 85c58bc..0000000
--- a/include/benoit/d/printdolog.hh
+++ /dev/null
@@ -1,6 +0,0 @@
-# pragma once
-namespace benoit {
- namespace d {
- bool extern printdolog;
- }
-}
diff --git a/include/benoit/d/resx.hh b/include/benoit/d/resx.hh
deleted file mode 100644
index c90a790..0000000
--- a/include/benoit/d/resx.hh
+++ /dev/null
@@ -1,6 +0,0 @@
-# pragma once
-namespace benoit {
- namespace d {
- unsigned extern resx;
- }
-}
diff --git a/include/benoit/d/resy.hh b/include/benoit/d/resy.hh
deleted file mode 100644
index 7d502a8..0000000
--- a/include/benoit/d/resy.hh
+++ /dev/null
@@ -1,6 +0,0 @@
-# pragma once
-namespace benoit {
- namespace d {
- unsigned extern resy;
- }
-}
diff --git a/include/benoit/d/thelog.hh b/include/benoit/d/thelog.hh
deleted file mode 100644
index edceb32..0000000
--- a/include/benoit/d/thelog.hh
+++ /dev/null
@@ -1,8 +0,0 @@
-# pragma once
-# include <string>
-# include <vector>
-namespace benoit {
- namespace d {
- std::vector<std::string> extern thelog;
- }
-}
diff --git a/include/benoit/d/ver.hh b/include/benoit/d/ver.hh
deleted file mode 100644
index 42fc054..0000000
--- a/include/benoit/d/ver.hh
+++ /dev/null
@@ -1,6 +0,0 @@
-# pragma once
-namespace benoit {
- namespace d {
- unsigned long long constexpr ver = 0xB;
- }
-}
diff --git a/include/benoit/err/clsfil.hh b/include/benoit/err/clsfil.hh
deleted file mode 100644
index ed853b9..0000000
--- a/include/benoit/err/clsfil.hh
+++ /dev/null
@@ -1,7 +0,0 @@
-# pragma once
-# include <string>
-namespace benoit {
- namespace err {
- void clsfil(std::string const fil) noexcept;
- }
-}
diff --git a/include/benoit/err/wrttofil.hh b/include/benoit/err/wrttofil.hh
deleted file mode 100644
index 232d431..0000000
--- a/include/benoit/err/wrttofil.hh
+++ /dev/null
@@ -1,7 +0,0 @@
-# pragma once
-# include <string>
-namespace benoit {
- namespace err {
- void wrttofil(std::string const fil) noexcept;
- }
-}
diff --git a/include/benoit/exit.hh b/include/benoit/exit.hh
deleted file mode 100644
index bcf487d..0000000
--- a/include/benoit/exit.hh
+++ /dev/null
@@ -1,6 +0,0 @@
-# pragma once
-# include <string>
-using namespace std::string_literals;
-namespace benoit {
- [[noreturn]] void exit(int code,std::string msg = ""s) noexcept;
-}
diff --git a/include/benoit/helpscrn.hh b/include/benoit/helpscrn.hh
deleted file mode 100644
index 66eea36..0000000
--- a/include/benoit/helpscrn.hh
+++ /dev/null
@@ -1,4 +0,0 @@
-# pragma once
-namespace benoit {
- [[noreturn]] void helpscrn() noexcept;
-}
diff --git a/include/benoit/kernelstr.hh b/include/benoit/kernelstr.hh
deleted file mode 100644
index 9ad0746..0000000
--- a/include/benoit/kernelstr.hh
+++ /dev/null
@@ -1,6 +0,0 @@
-# pragma once
-# include <benoit/t/kernel.hh>
-# include <string>
-namespace benoit {
- std::string kernelstr(benoit::t::kernel kernel) noexcept;
-}
diff --git a/include/benoit/loadcfg.hh b/include/benoit/loadcfg.hh
deleted file mode 100644
index 10273b0..0000000
--- a/include/benoit/loadcfg.hh
+++ /dev/null
@@ -1,4 +0,0 @@
-# pragma once
-namespace benoit {
- void loadcfg();
-}
diff --git a/include/benoit/log.hh b/include/benoit/log.hh
deleted file mode 100644
index 6c04e76..0000000
--- a/include/benoit/log.hh
+++ /dev/null
@@ -1,6 +0,0 @@
-# pragma once
-# include <string>
-namespace benoit {
- void log(std::string msg);
- void log(std::string const func,std::string msg);
-}
diff --git a/include/benoit/logfunc.hh b/include/benoit/logfunc.hh
deleted file mode 100644
index 35daec8..0000000
--- a/include/benoit/logfunc.hh
+++ /dev/null
@@ -1,5 +0,0 @@
-# pragma once
-# include <string>
-namespace benoit {
- void logfunc(std::string const func);
-}
diff --git a/include/benoit/logfuncret.hh b/include/benoit/logfuncret.hh
deleted file mode 100644
index 1db2e41..0000000
--- a/include/benoit/logfuncret.hh
+++ /dev/null
@@ -1,5 +0,0 @@
-# pragma once
-# include <string>
-namespace benoit {
- void logfuncret(std::string const func);
-}
diff --git a/include/benoit/main.hh b/include/benoit/main.hh
deleted file mode 100644
index 72e7051..0000000
--- a/include/benoit/main.hh
+++ /dev/null
@@ -1,4 +0,0 @@
-# pragma once
-namespace benoit {
- [[noreturn]] void main(int const argc,char const * * argv) noexcept;
-}
diff --git a/include/benoit/plotmandelbrot.hh b/include/benoit/plotmandelbrot.hh
deleted file mode 100644
index f79b247..0000000
--- a/include/benoit/plotmandelbrot.hh
+++ /dev/null
@@ -1,6 +0,0 @@
-# pragma once
-# include <cstdint>
-# include <vector>
-namespace benoit {
- std::vector<std::uint8_t> * plotmandelbrot();
-}
diff --git a/include/benoit/print.hh b/include/benoit/print.hh
deleted file mode 100644
index 0f85fd3..0000000
--- a/include/benoit/print.hh
+++ /dev/null
@@ -1,5 +0,0 @@
-# pragma once
-# include <string>
-namespace benoit {
- void print(std::string msg,bool stderr = false);
-}
diff --git a/include/benoit/t/arch.hh b/include/benoit/t/arch.hh
deleted file mode 100644
index 622e70d..0000000
--- a/include/benoit/t/arch.hh
+++ /dev/null
@@ -1,12 +0,0 @@
-# pragma once
-namespace benoit {
- namespace t {
- enum class arch {
- aarch64,
- amd64,
- ia64,
- ppc64,
- unknown,
- };
- }
-}
diff --git a/include/benoit/t/imgfmt.hh b/include/benoit/t/imgfmt.hh
deleted file mode 100644
index 7efed27..0000000
--- a/include/benoit/t/imgfmt.hh
+++ /dev/null
@@ -1,9 +0,0 @@
-# pragma once
-namespace benoit {
- namespace t {
- enum class imgfmt {
- png,
- webp,
- };
- }
-}
diff --git a/include/benoit/t/kernel.hh b/include/benoit/t/kernel.hh
deleted file mode 100644
index 099dd60..0000000
--- a/include/benoit/t/kernel.hh
+++ /dev/null
@@ -1,16 +0,0 @@
-# pragma once
-namespace benoit {
- namespace t {
- enum class kernel {
- darwinos,
- dragonflybsd,
- freebsd,
- hurd,
- linux,
- minix,
- netbsd,
- openbsd,
- unknown,
- };
- }
-}
diff --git a/include/benoit/t/pos.hh b/include/benoit/t/pos.hh
deleted file mode 100644
index 697fdef..0000000
--- a/include/benoit/t/pos.hh
+++ /dev/null
@@ -1,12 +0,0 @@
-# pragma once
-namespace benoit {
- namespace t {
- class pos {
- public:
- pos(__float128 x = 0x0,__float128 y = 0x0);
- __float128 x = 0x0;
- __float128 y = 0x0;
- __float128 zoom = 0x1;
- };
- }
-}
diff --git a/include/benoit/t/rgba.hh b/include/benoit/t/rgba.hh
deleted file mode 100644
index a1bdcf7..0000000
--- a/include/benoit/t/rgba.hh
+++ /dev/null
@@ -1,13 +0,0 @@
-# pragma once
-# include <cstdint>
-namespace benoit {
- namespace t {
- class rgba {
- public:
- std::uint8_t a = 0xFFu;
- std::uint8_t b = 0x0u;
- std::uint8_t g = 0x0u;
- std::uint8_t r = 0x0u;
- };
- }
-}
diff --git a/include/benoit/t/thrddat.hh b/include/benoit/t/thrddat.hh
deleted file mode 100644
index 85b3bfb..0000000
--- a/include/benoit/t/thrddat.hh
+++ /dev/null
@@ -1,17 +0,0 @@
-# pragma once
-# include <benoit/t/rgba.hh>
-# include <cstdint>
-# include <pthread.h>
-namespace benoit {
- namespace t {
- class thrddat {
- public:
- benoit::t::rgba * img = nullptr;
- bool * isrun = nullptr;
- pthread_t * thrd = nullptr;
- unsigned * id = nullptr;
- unsigned long long * imgbegin = nullptr;
- unsigned long long * imgend = nullptr;
- };
- }
-}
diff --git a/include/benoit/wrtimg.hh b/include/benoit/wrtimg.hh
deleted file mode 100644
index ce4880b..0000000
--- a/include/benoit/wrtimg.hh
+++ /dev/null
@@ -1,6 +0,0 @@
-# pragma once
-# include <cstdint>
-# include <vector>
-namespace benoit {
- void wrtimg(std::vector<std::uint8_t> * img);
-}