mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-27 02:18:21 +00:00
4b79ccd416
* https://github.com/hashcat/hashcat/pull/485 * https://github.com/hashcat/hashcat/pull/486
18 lines
376 B
C
18 lines
376 B
C
/**
|
|
* Author......: Jens Steube <jens.steube@gmail.com>
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
|
|
#define MSG_ENOMEM "Insufficient memory available"
|
|
|
|
void *mycalloc (size_t nmemb, size_t size);
|
|
void myfree (void *ptr);
|
|
void *mymalloc (size_t size);
|
|
void *myrealloc (void *ptr, size_t oldsz, size_t add);
|
|
char *mystrdup (const char *s);
|