/* Copyright (C) 2014-2015 Ben Kurtovic Released under the terms of the MIT License. See LICENSE for details. */ #pragma once #include #include #include "state.h" bool parse_bool(bool*, const ASMLine*, const char*, bool); bool parse_uint32(uint32_t*, const ASMLine*, const char*); bool parse_uint16(uint16_t*, const ASMLine*, const char*); bool parse_uint8(uint8_t*, const ASMLine*, const char*);