diff options
author | Ben Smith <binjimin@gmail.com> | 2017-01-31 17:16:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-31 17:16:19 -0800 |
commit | 4fdbb4647c519a42f3e54ed7a858194780ca2ae4 (patch) | |
tree | 3aebad7746c492930c32786061c655bb017fdc81 /src/binary-reader-ast.h | |
parent | edb3a471bc249855d5ece45dc21ee69af700b19b (diff) | |
download | wabt-4fdbb4647c519a42f3e54ed7a858194780ca2ae4.tar.gz wabt-4fdbb4647c519a42f3e54ed7a858194780ca2ae4.tar.bz2 wabt-4fdbb4647c519a42f3e54ed7a858194780ca2ae4.zip |
Rename all wasm prefixes to wabt (#298)
Diffstat (limited to 'src/binary-reader-ast.h')
-rw-r--r-- | src/binary-reader-ast.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/binary-reader-ast.h b/src/binary-reader-ast.h index 8b8fcc0c..512a75ba 100644 --- a/src/binary-reader-ast.h +++ b/src/binary-reader-ast.h @@ -14,22 +14,22 @@ * limitations under the License. */ -#ifndef WASM_BINARY_READER_AST_H_ -#define WASM_BINARY_READER_AST_H_ +#ifndef WABT_BINARY_READER_AST_H_ +#define WABT_BINARY_READER_AST_H_ #include "common.h" -struct WasmAllocator; -struct WasmModule; -struct WasmReadBinaryOptions; +struct WabtAllocator; +struct WabtModule; +struct WabtReadBinaryOptions; -WASM_EXTERN_C_BEGIN -WasmResult wasm_read_binary_ast(struct WasmAllocator* allocator, +WABT_EXTERN_C_BEGIN +WabtResult wabt_read_binary_ast(struct WabtAllocator* allocator, const void* data, size_t size, - const struct WasmReadBinaryOptions* options, - WasmBinaryErrorHandler*, - struct WasmModule* out_module); -WASM_EXTERN_C_END + const struct WabtReadBinaryOptions* options, + WabtBinaryErrorHandler*, + struct WabtModule* out_module); +WABT_EXTERN_C_END -#endif /* WASM_BINARY_READER_AST_H_ */ +#endif /* WABT_BINARY_READER_AST_H_ */ |