Rizin
unix-like reverse engineering framework and cli tools
utils.h File Reference
#include <assert.h>

Go to the source code of this file.

Macros

#define DUPMAX   255
 
#define INTFINITY   (DUPMAX + 1)
 
#define NC   (CHAR_MAX - CHAR_MIN + 1)
 
#define STRLCPY(x, y, z)
 
#define NDEBUG   /* no assertions please */
 
#define ut8   unsigned char
 

Macro Definition Documentation

◆ DUPMAX

#define DUPMAX   255

Definition at line 39 of file utils.h.

◆ INTFINITY

#define INTFINITY   (DUPMAX + 1)

Definition at line 41 of file utils.h.

◆ NC

#define NC   (CHAR_MAX - CHAR_MIN + 1)

Definition at line 42 of file utils.h.

◆ NDEBUG

#define NDEBUG   /* no assertions please */

Definition at line 53 of file utils.h.

◆ STRLCPY

#define STRLCPY (   x,
  y,
 
)
Value:
{ \
strncpy((x), (y), (z)); \
(x)[(z) ? (z)-1 : 0] = 0; \
}
int x
Definition: mipsasm.c:20

Definition at line 44 of file utils.h.

◆ ut8

#define ut8   unsigned char

Definition at line 62 of file utils.h.