File: parser2.h

package info (click to toggle)
abcmidi 20190101-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,236 kB
  • sloc: ansic: 30,486; sh: 427; makefile: 104
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