]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/notename.hh
b533f4d3604b86829bfdfede8f37c7061eee466b
[lilypond.git] / lily / include / notename.hh
1 /*
2   notename.hh -- part of LilyPond
3
4   (c) 1996,97 Han-Wen Nienhuys
5 */
6
7 #ifndef NOTENAME_HH
8 #define NOTENAME_HH
9
10 #include "string.hh"
11
12 struct Notename_tab {
13     String notetab[7*5];
14     
15     void set(int l, int s, String nm);
16     void lookup(int &large, int &small, String s);
17 };
18
19 void set_notename_tab(Notename_tab*n);
20 void lookup_notename(int &large, int &small, String s);
21
22
23 #endif // NOTENAME_HH
24