/**************************************************************************** * * woff2tags.c * * WOFF2 Font table tags (base). * * Copyright (C) 2019-2023 by * Nikhil Ramakrishnan, David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modified, and distributed under the terms of the FreeType project * license, LICENSE.TXT. By continuing to use, modify, or distribute * this file you indicate that you have read the license and * understand and accept it fully. * */ #include <freetype/tttags.h> #ifdef FT_CONFIG_OPTION_USE_BROTLI #include "woff2tags.h" /* * Return tag from index in the order given in WOFF2 specification. * * See * * https://www.w3.org/TR/WOFF2/#table_dir_format * * for details. */ FT_LOCAL_DEF( FT_Tag ) woff2_known_tags( FT_Byte index ) { … } #else /* !FT_CONFIG_OPTION_USE_BROTLI */ /* ANSI C doesn't like empty source files */ typedef int woff2tags_dummy_; #endif /* !FT_CONFIG_OPTION_USE_BROTLI */ /* END */