File: memory.h

package info (click to toggle)
hashcat 7.1.2%2Bds1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 75,920 kB
  • sloc: lisp: 627,107; ansic: 431,312; perl: 30,157; cpp: 11,400; sh: 5,250; python: 2,504; makefile: 1,188
file content (27 lines) | stat: -rw-r--r-- 753 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
 * Author......: See docs/credits.txt
 * License.....: MIT
 */

#ifndef HC_MEMORY_H
#define HC_MEMORY_H

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#define MSG_ENOMEM "Insufficient memory available"

void *hccalloc                (const size_t nmemb, const size_t sz);
void *hcmalloc                (const size_t sz);
void *hcrealloc               (void *ptr, const size_t oldsz, const size_t addsz);
char *hcstrdup                (const char *s);
void  hcfree                  (void *ptr);

void *hc_alloc_aligned        (size_t alignment, size_t size);
void  hc_free_aligned         (void **ptr);

void *hcmalloc_bridge_aligned (const size_t sz, const int align);
void  hcfree_bridge_aligned   (void *ptr);

#endif // HC_MEMORY_H