Introduction
Introduction Statistics Contact Development Disclaimer Help
assert.h - ledit - Text editor (WIP)
git clone git://lumidify.org/ledit.git (fast, but not encrypted)
git clone https://lumidify.org/ledit.git (encrypted, but very slow)
git clone git://4kcetb7mo7hj6grozzybxtotsub5bempzo4lirzc3437amof2c2impyd.onion/…
Log
Files
Refs
README
LICENSE
---
assert.h (447B)
---
1 #ifndef _LEDIT_ASSERT_H_
2 #define _LEDIT_ASSERT_H_
3
4 /* based on the assert found in OpenBSD */
5 void ledit_assert_impl(const char *file, int line, const char *func, con…
6 #define ledit_assert(e) ((e) ? (void)0 : ledit_assert_impl(__FILE__, __L…
7 /* used by some functions like buffer_get_line */
8 #define ledit_assert_manual(e, file, line, func) ((e) ? (void)0 : ledit_…
9
10 #endif
You are viewing proxied material from lumidify.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.