blob: ce7b6c4247bf953ca72694f3d8a67720d129576a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef SYS_H
#define SYS_H
#include "types.h"
void info(const char *fmt, ...);
void die(const char *fmt, ...);
void *read_entire_file(const char *filename);
const char *get_bin_dir(void);
void load_wav(const char *dir, const char *filename, const char *name);
void play_audio(const char *name, i32 loop);
#endif
|