summaryrefslogtreecommitdiff
path: root/Build/source/libs/freetype/freetype-1.5/test/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/freetype/freetype-1.5/test/common.h')
-rw-r--r--Build/source/libs/freetype/freetype-1.5/test/common.h81
1 files changed, 0 insertions, 81 deletions
diff --git a/Build/source/libs/freetype/freetype-1.5/test/common.h b/Build/source/libs/freetype/freetype-1.5/test/common.h
deleted file mode 100644
index 16e42416890..00000000000
--- a/Build/source/libs/freetype/freetype-1.5/test/common.h
+++ /dev/null
@@ -1,81 +0,0 @@
-/****************************************************************************/
-/* */
-/* The FreeType project -- a free and portable quality TrueType renderer. */
-/* */
-/* Copyright 1996-2001 by */
-/* D. Turner, R.Wilhelm, and W. Lemberg */
-/* */
-/* common.h: Various utility functions. */
-/* */
-/****************************************************************************/
-
-#ifndef COMMON_H
-#define COMMON_H
-
-#include <stdio.h>
-
-
-/*
- * This is a cheap replacement for getopt() because that routine is not
- * available on some platforms and behaves differently on other platforms.
- *
- * This code is hereby expressly placed in the public domain.
- * mleisher@crl.nmsu.edu (Mark Leisher)
- * 10 October 1997
- */
-
-#ifdef __cplusplus
- extern "C" {
-#endif
-
- extern int ft_opterr;
- extern int ft_optind;
- extern char* ft_optarg;
-
- extern int ft_getopt(
-#ifdef __STDC__
- int argc,
- char* const* argv,
- const char* pattern
-#endif
- );
-
-
-/****************************************************************************/
-/* */
-/* Stupid but useful functions... */
-/* */
-/* rewritten by DavidT to get rid of GPLed programs in the FreeType engine. */
-
-
- extern char* ft_basename(
-#ifdef __STDC__
- const char* name
-#endif
- );
-
-
- /* print a message and exit */
- extern void Panic(
-#ifdef __STDC__
- const char* fmt, ...
-#endif
- );
-
-
- extern void separator_line(
-#ifdef __STDC__
- FILE* out,
- const int length
-#endif
- );
-
-
-#ifdef __cplusplus
- }
-#endif
-
-#endif /* COMMON_H */
-
-
-/* End */