mirror of https://github.com/mackron/miniaudio.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
368 B
Plaintext
14 lines
368 B
Plaintext
miniaudio_h := <../miniaudio.h>;
|
|
miniaudio_c := <../miniaudio.c>;
|
|
|
|
cleanup :: function(src:string) string
|
|
{
|
|
return @(src)
|
|
["\r\n"] <= "\n" // Normalize line endings to "\n". Needed for very old versions of GCC.
|
|
["\t"] <= " " // Tabs to spaces.
|
|
;
|
|
}
|
|
|
|
miniaudio_h = cleanup(@(miniaudio_h));
|
|
miniaudio_c = cleanup(@(miniaudio_c));
|