17 lines
397 B
C
17 lines
397 B
C
/**
|
|
* Created by: artDev
|
|
* Copyright (c) 2025 artDev, SerpentSpirale, PojavLauncherTeam, Digital Genesis LLC.
|
|
* For use under LGPL-3.0
|
|
*/
|
|
|
|
#ifndef POJAVLAUNCHER_INT_HASH_H
|
|
#define POJAVLAUNCHER_INT_HASH_H
|
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "unordered_map.h"
|
|
unordered_map* alloc_intmap_safe();
|
|
unordered_map* alloc_intmap();
|
|
|
|
#endif //POJAVLAUNCHER_INT_HASH_H
|