File: parser2.h

package info (click to toggle)
abcmidi 20060422-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,336 kB
  • ctags: 2,230
  • sloc: ansic: 24,857; makefile: 106
file content (16 lines) | stat: -rw-r--r-- 505 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* parser2.h */
/* part of abc2midi and yaps */
/* provides further parsing of I: info field */
/* and multiple instruction and gchord fields */

#ifndef KANDR
extern void event_info_key(char *key, char *value);
extern void event_handle_gchord(char *s);
extern void event_handle_instruction(char *s);
extern void event_x_reserved(char s);
#else
extern void event_info_key();
extern void event_handle_gchord();
extern void event_handle_instruction();
extern void event_x_reserved();
#endif