Home --> Documentations --> PJLIB Reference
Go to the documentation of this file.
19#ifndef __PJ_ASSERT_H__
20#define __PJ_ASSERT_H__
28#include <pj/compat/assert.h>
48# define pj_assert(expr) assert(expr)
58#define PJ_ASSERT_RETURN(expr,retval) \
60 if (!(expr)) { pj_assert(expr); return retval; } \
72#define PJ_ASSERT_ON_FAIL(expr,exec_on_fail) \
75 if (!(expr)) exec_on_fail; \
PJLIB Main configuration settings.
PJLIB Open Source, high performance, small footprint, and very very portable framework
Copyright (C) 2006-2009 Teluu Inc.
|