2020.10.12

This commit is contained in:
Seymour Shlien
2020-10-12 07:59:07 -04:00
parent 6c9ec6de0e
commit 54a3b903c4
10 changed files with 288 additions and 201 deletions

View File

@@ -32,12 +32,22 @@ struct voice_params {
char other[V_STRLEN+1]; /* [SS] 2011-04-18 */
};
typedef struct voice_context {
char label[31];
int expect_repeat;
int repeat_count;
} voice_context_t;
#define MAX_VOICES 30
/* holds a fraction */
struct fraction {
int num;
int denom;
};
extern int repcheck; /* allows backend to enable/disable repeat checking */
extern voice_context_t voicecode[MAX_VOICES];
#ifndef KANDR
extern int readnump(char **p);