20 lines
280 B
C
20 lines
280 B
C
#ifndef BITBUFF_H
|
|
#define BITBUFF_H
|
|
|
|
////////////////////////////////
|
|
//~ Layer dependencies
|
|
|
|
#include "../base/base.h"
|
|
inline void BB_StartupDeps(void)
|
|
{
|
|
BaseMain();
|
|
}
|
|
|
|
////////////////////////////////
|
|
//~ Layer headers
|
|
|
|
#include "bitbuff_core.h"
|
|
void BB_Main(void);
|
|
|
|
#endif
|