emscripten-tutorial

How to build an increasingly complex C/C++ codebase to WebAssembly
git clone https://git.tronto.net/emscripten-tutorial
Download | Log | Files | Refs | README

storage.h (120B)


      1 #ifndef STORAGE_H
      2 #define STORAGE_H
      3 
      4 bool read_table(unsigned char *);
      5 bool store_table(const unsigned char *);
      6 
      7 #endif