Skip to content
7 changes: 7 additions & 0 deletions include/features.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#ifndef FEATURES_H
#define FEATURES_H

// Header file for features.c, read the comment there for more information.
void HandleBucket();

#endif
4 changes: 4 additions & 0 deletions src/features.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#include "features.h"
/* This is a file for storing features that need custom implementation such as buckets.
Don't mess with stuff here unless you are making a feature or fixing bugs.
*/