File: parser2.h

package info (click to toggle)
abcmidi 17-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 792 kB
  • ctags: 1,455
  • sloc: ansic: 17,345; makefile: 104
file content (14 lines) | stat: -rw-r--r-- 433 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 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);
#else
extern void event_info_key();
extern void event_handle_gchord();
extern void event_handle_instruction();
#endif