From 4e707cbcf73bad6d48c8beecd1762c8c1398db07 Mon Sep 17 00:00:00 2001 From: Akira Kakuto Date: Thu, 6 Feb 2020 23:02:45 +0000 Subject: autosp 2020-02-06 git-svn-id: svn://tug.org/texlive/trunk@53702 c570f23f-e606-0410-a88d-b1316a301751 --- Build/source/utils/autosp/autosp-src/autosp.c | 46 ++++++++++++++++++++++++--- 1 file changed, 42 insertions(+), 4 deletions(-) (limited to 'Build/source/utils/autosp/autosp-src/autosp.c') diff --git a/Build/source/utils/autosp/autosp-src/autosp.c b/Build/source/utils/autosp/autosp-src/autosp.c index b109032e94a..77add3b53d5 100644 --- a/Build/source/utils/autosp/autosp-src/autosp.c +++ b/Build/source/utils/autosp/autosp-src/autosp.c @@ -1,6 +1,6 @@ -char version[12] = "2019-12-22"; +char version[12] = "2020-02-06"; -/* Copyright (C) 2014-19 R. D. Tennent School of Computing, +/* Copyright (C) 2014-20 R. D. Tennent School of Computing, * Queen's University, rdt@cs.queensu.ca * * This program is free software; you can redistribute it @@ -80,8 +80,46 @@ char version[12] = "2019-12-22"; * */ -# include "autosp.h" +# include "utils.h" +#ifdef HAVE_CONFIG_H /* for TeXLive */ +#include +#endif + +# ifdef KPATHSEA +# include +# else +# include +# endif + +# ifdef HAVE_STDBOOL_H +# include +# else +# ifndef HAVE__BOOL +# define _Bool signed char +# endif +# define bool _Bool +# define true 1 +# define false 0 +# endif + +# define PRIVATE static + +# define SHORT_LEN 256 + +bool debug; +bool dottedbeamnotes; /* dotted beam notes ignored? */ + +char infilename[SHORT_LEN]; +char *infilename_n; +char outfilename[SHORT_LEN]; +char *outfilename_n; +char logfilename[SHORT_LEN]; +char *logfilename_n; +FILE *infile, *outfile, *logfile; + + +void process_score (); PRIVATE void usage () @@ -108,7 +146,7 @@ int main (int argc, char *argv[]) }; printf ("This is autosp, version %s.\n", version); - printf ("Copyright (C) 2014-19 R. D. Tennent\n" ); + printf ("Copyright (C) 2014-20 R. D. Tennent\n" ); printf ("School of Computing, Queen's University, rdt@cs.queensu.ca\n" ); printf ("License GNU GPL version 2 or later .\n" ); printf ("There is NO WARRANTY, to the extent permitted by law.\n\n" ); -- cgit v1.2.3