diff options
author | Matthew Strapp <matt@mattstrapp.net> | 2024-05-12 09:30:24 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-05-13 10:22:13 -0500 |
commit | e85b4f424ed239452567dab15fef6a4ad93b1775 (patch) | |
tree | edcdc527a27a12a2ccd08260e7fee8fba716b352 /include | |
download | locusts-e85b4f424ed239452567dab15fef6a4ad93b1775.tar locusts-e85b4f424ed239452567dab15fef6a4ad93b1775.tar.gz locusts-e85b4f424ed239452567dab15fef6a4ad93b1775.tar.bz2 locusts-e85b4f424ed239452567dab15fef6a4ad93b1775.tar.lz locusts-e85b4f424ed239452567dab15fef6a4ad93b1775.tar.xz locusts-e85b4f424ed239452567dab15fef6a4ad93b1775.tar.zst locusts-e85b4f424ed239452567dab15fef6a4ad93b1775.zip |
Initial commit
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/locusts.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/locusts.h b/include/locusts.h new file mode 100644 index 0000000..d2ca893 --- /dev/null +++ b/include/locusts.h @@ -0,0 +1,20 @@ +#ifndef LOCUSTS_H +#define LOCUSTS_H + +#ifdef __cplusplus +extern "C" { +#endif + +/* +Introduces locusts into your codebase. + +Note: locusts are not included with installing this library. Please source your +own. +*/ +void introduce_locusts(void) { return; } + +#ifdef __cplusplus +} +#endif + +#endif // LOCUSTS_H |