Sona 0.50/tools/mml2sona/text.h
#ifndef TEXT_H_
#define TEXT_H_
#include <stdio.h>
char *read_line(FILE *file);
const char *skip_spaces(const char *text);
const char *skip_nonspaces(const char *text);
int get_number(const char **text, int *result);
#endif