Stackdb
Stackdb is a stackable, multi-target and -level source debugger and memory forensics library.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Macros
util.h File Reference
#include <stdsoap2.h>
#include <stdlib.h>
Include dependency graph for util.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define SOAP_CALLOC(soap, nmemb, size)   memset(soap_malloc((soap),(nmemb)*(size)),0,(nmemb)*(size));
 
#define SOAP_STRCPY(soap, d, s)
 

Macro Definition Documentation

#define SOAP_CALLOC (   soap,
  nmemb,
  size 
)    memset(soap_malloc((soap),(nmemb)*(size)),0,(nmemb)*(size));

Definition at line 25 of file util.h.

#define SOAP_STRCPY (   soap,
  d,
 
)
Value:
do { \
char *_ss = (s); \
int _rc; \
\
if (!_ss) \
(d) = NULL; \
else { \
_rc = strlen(_ss) + 1; \
(d) = soap_malloc((soap),_rc); \
strncpy((d),_ss,_rc); \
} \
} while (0);
struct soap * soap
Definition: proxyreq.h:160

Definition at line 28 of file util.h.