This website works better with JavaScript.
Почетна
Преглед
Помоћ
Пријавите Се
TheoryOfNekomata
/
midi-utils
Прати
1
Волим
0
Креирај огранак
0
Код
Дискусије
0
Захтеви за спајање
0
Издања
0
Вики
Activity
Преглед изворни кода
Implement _strlwr for non-Windows platforms
_strlwr is not present on non-Windows platforms.
master
TheoryOfNekomata
пре 1 година
родитељ
dc3396c806
комит
04b34ae8ff
1 измењених фајлова
са
10 додато
и
0 уклоњено
Подељен поглед
Diff Options
Show Stats
Download Patch File
Download Diff File
+10
-0
midi-utils.c
+ 10
- 0
midi-utils.c
Прегледај датотеку
@@ -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",
Write
Preview
Loading…
Откажи
Сачувај