/**************************************************************************** * * fterrors.c * * FreeType API for error code handling. * * Copyright (C) 2018-2023 by * Armin Hasitzka, 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/internal/ftdebug.h> #include <freetype/fterrors.h> /* documentation is in fterrors.h */ FT_EXPORT_DEF( const char* ) FT_Error_String( FT_Error error_code ) { … }