이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
로그인
TheoryOfNekomata
/
midi-utils
보기
1
좋아요
0
포크
0
코드
이슈
0
풀 리퀘스트
0
릴리즈
0
위키
활동
소스 검색
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",
쓰기
미리보기
불러오는 중...
취소
저장