diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2023-03-21 02:32:05 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2023-03-21 02:32:05 -0400 |
commit | 1acc49b21d850e035a2517930e6738b873953047 (patch) | |
tree | 7e5e50a4a5848d919d979f46b4383958c7096462 /common.h | |
parent | 433faac95e86a4ed61176061c4b0e8451cc58bf5 (diff) |
Manual merge of chartFile branch
Diffstat (limited to 'common.h')
-rw-r--r-- | common.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/common.h b/common.h new file mode 100644 index 0000000..991303f --- /dev/null +++ b/common.h @@ -0,0 +1,13 @@ +#ifndef COMMON_H +#define COMMON_H + +// Timing calculations {{{ + +// NanoSecond per tick +int nspt(const int nbpm, const int resolution); + +// }}} + +#include "common.cpp" +#endif // COMMON_H +// vim: syntax=cpp.doxygen |