本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
探索
說明
登入
TheoryOfNekomata
/
midi-utils
關注
1
收藏
0
複製
0
程式碼
問題
0
合併請求
0
版本發佈
0
Wiki
活動
瀏覽代碼
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…
取消
儲存