Notcurses 3.0.16
a blingful library for TUIs and character graphics
Loading...
Searching...
No Matches
_helpers.hh
Go to the documentation of this file.
1#ifndef __NCPP_HELPERS_HH
2#define __NCPP_HELPERS_HH
3
4namespace ncpp
5{
6#define NCPP_LIKELY(expr) (__builtin_expect ((expr) != 0, 1))
7#define NCPP_UNLIKELY(expr) (__builtin_expect ((expr) != 0, 0))
8
9#define NCPP_API_EXPORT __attribute__((visibility ("default")))
10#define NCPP_API_LOCAL __attribute__((visibility ("hidden")))
11}
12#endif