zig/src/error.hpp

18 lines
297 B
C++
Raw Normal View History

2015-11-05 15:05:25 +08:00
/*
* Copyright (c) 2015 Andrew Kelley
*
* This file is part of zig, which is MIT licensed.
* See http://opensource.org/licenses/MIT
*/
#ifndef ERROR_HPP
#define ERROR_HPP
#include "userland.h"
2015-11-05 15:05:25 +08:00
const char *err_str(Error err);
#define assertNoError(err) assert((err) == ErrorNone);
2015-11-05 15:05:25 +08:00
#endif