Exemple #1
0
/*
 * 
 * This function writes the special chars. As the specials chars are
 * represented simply in gabc, this function is very simple, but for TeX output 
 * modules, this may be.. a little more difficult.
 * 
 */
static void gabc_write_special_char(FILE *f, const grewchar *first_char)
{
    fprintf(f, "<sp>");
    gregorio_print_unistring(f, first_char);
    fprintf(f, "</sp>");
}
Exemple #2
0
/*
 * 
 * This functions writes verbatim output... but as the previous one it is very
 * simple.
 * 
 */
static void gabc_write_verb(FILE *f, const grewchar *first_char)
{
    fprintf(f, "<v>");
    gregorio_print_unistring(f, first_char);
    fprintf(f, "</v>");
}
Exemple #3
0
void
otex_write_verb (FILE *f, grewchar *verb_str)
{
  gregorio_print_unistring (f, verb_str);
}