diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2024-10-02 15:17:16 -0500 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2024-10-02 15:17:16 -0500 |
commit | e4345522c01f9dd760646f4a3b9ca26ee7c8812f (patch) | |
tree | 717d241875cdbb66a94995c4d42dc75ab58548dd | |
parent | df97d415ecb51688602a2fc2955199c06f14585c (diff) |
Add fud function.
-rw-r--r-- | include/libfud.hpp | 3 | ||||
-rw-r--r-- | source/libfud.cpp | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/libfud.hpp b/include/libfud.hpp index a0b2909..8004df4 100644 --- a/include/libfud.hpp +++ b/include/libfud.hpp @@ -24,6 +24,9 @@ namespace fud { +/** \brief Fear, unknown, doubt. Call at your own peril. */ +void fud(); + Result<String, FudStatus> getEnv(const char* name); template<typename T> diff --git a/source/libfud.cpp b/source/libfud.cpp index e1dad1d..e9b3c8c 100644 --- a/source/libfud.cpp +++ b/source/libfud.cpp @@ -21,6 +21,10 @@ namespace fud { +void fud() { + /* Are you feeling the fud? */ +} + Result<String, FudStatus> getEnv(const char* name) { using RetType = Result<String, FudStatus>; |