removed every file-related function declaration from memory
This commit is contained in:
parent
7baaca49c2
commit
114695f653
@ -1,16 +1,10 @@
|
|||||||
#ifndef WHY2_MEMORY_H
|
#ifndef WHY2_MEMORY_H
|
||||||
#define WHY2_MEMORY_H
|
#define WHY2_MEMORY_H
|
||||||
|
|
||||||
#include <stdio.h> //TODO: Make the FILE* shit smarter | idk if it is possible
|
|
||||||
|
|
||||||
void *why2_malloc(unsigned long size);
|
void *why2_malloc(unsigned long size);
|
||||||
void *why2_calloc(unsigned long element, unsigned long size);
|
void *why2_calloc(unsigned long element, unsigned long size);
|
||||||
void *why2_realloc(void *pointer, unsigned long size);
|
void *why2_realloc(void *pointer, unsigned long size);
|
||||||
|
|
||||||
FILE *why2_fopen(char *file_name, char *modes);
|
|
||||||
FILE *why2_fdopen(int file, char *modes);
|
|
||||||
int why2_open(char *file, int flags, ...);
|
|
||||||
|
|
||||||
void why2_free(void *pointer);
|
void why2_free(void *pointer);
|
||||||
|
|
||||||
#endif
|
#endif
|
Loading…
x
Reference in New Issue
Block a user