1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
/* tascript.c */
/*
* Copyright (C) 2014-2021 by Werner Lemberg.
*
* This file is part of the ttfautohint library, and may only be used,
* modified, and distributed under the terms given in `COPYING'. By
* continuing to use, modify, or distribute this file you indicate that you
* have read `COPYING' and understand and accept it fully.
*
* The file `COPYING' mentioned in the previous paragraph is distributed
* with the ttfautohint library.
*/
#include "ta.h"
#undef SCRIPT
#define SCRIPT(s, S, d, h, H, ss) #s,
const char* script_names[] =
{
#include <ttfautohint-scripts.h>
};
size_t script_names_size = sizeof (script_names) / sizeof (script_names[0]);
/* end of tascript.c */
|