Tämä sivusto toimii paremmin JavaScriptillä.
Etusivu
Tutki
Apua
Kirjaudu sisään
TheoryOfNekomata
/
midi-utils
Tarkkaile
1
Äänestä
0
Fork
0
Koodi
Ongelmat
0
Pull-pyynnöt
0
Julkaisut
0
Wiki
Toiminta
Selaa lähdekoodia
Implement _strlwr for non-Windows platforms
_strlwr is not present on non-Windows platforms.
master
TheoryOfNekomata
1 vuosi sitten
vanhempi
dc3396c806
commit
04b34ae8ff
1 muutettua tiedostoa
jossa
10 lisäystä
ja
0 poistoa
Jaettu näkymä
Diff Options
Show Stats
Download Patch File
Download Diff File
+10
-0
midi-utils.c
+ 10
- 0
midi-utils.c
Näytä tiedosto
@@ -1,5 +1,15 @@
#include "midi-utils.h"
#if !defined __WIN32
void _strlwr(char* dest) {
for (unsigned int i = 0; i < strlen(dest); i += 1) {
if ('A' <= dest[i] && dest[i] <= 'Z') {
dest[i] += 0x20;
}
}
}
#endif
char* MIDI_GetNoteName(unsigned char midi_note) {
static const char* pitch_names[] = {
"C",
Kirjoita
Esikatselu
Ladataan…
Peruuta
Tallenna