summaryrefslogtreecommitdiff
path: root/include/freetype/internal/ftcalc.h
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2001-06-28 17:49:10 +0000
committerWerner Lemberg <wl@gnu.org>2001-06-28 17:49:10 +0000
commit415235df1b955940ce85401a076f882e8717ef7b (patch)
tree6a9820a949b195f2bcbcdd73e3b105f99f924b81 /include/freetype/internal/ftcalc.h
parent4a2305cf0c686d58273e264780b48b159e42f604 (diff)
downloadfreetype2-415235df1b955940ce85401a076f882e8717ef7b.tar.gz
finishing function header formatting
updating copyrights
Diffstat (limited to 'include/freetype/internal/ftcalc.h')
-rw-r--r--include/freetype/internal/ftcalc.h35
1 files changed, 23 insertions, 12 deletions
diff --git a/include/freetype/internal/ftcalc.h b/include/freetype/internal/ftcalc.h
index cb588e1b4..4cdf40fb1 100644
--- a/include/freetype/internal/ftcalc.h
+++ b/include/freetype/internal/ftcalc.h
@@ -4,7 +4,7 @@
/* */
/* Arithmetic computations (specification). */
/* */
-/* Copyright 1996-2000 by */
+/* Copyright 1996-2001 by */
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
/* */
/* This file is part of the FreeType project, and may only be used, */
@@ -41,6 +41,7 @@ FT_BEGIN_HEADER
#define SQRT_64( z ) FT_Sqrt64( z )
+
/*************************************************************************/
/* */
/* <Function> */
@@ -57,7 +58,8 @@ FT_BEGIN_HEADER
/* <Return> */
/* The 32-bit square-root. */
/* */
- FT_EXPORT( FT_Int32 ) FT_Sqrt64( FT_Int64 l );
+ FT_EXPORT( FT_Int32 )
+ FT_Sqrt64( FT_Int64 l );
#else /* !FT_LONG64 */
@@ -94,9 +96,10 @@ FT_BEGIN_HEADER
/* <Note> */
/* Will be wrapped by the ADD_64() macro. */
/* */
- FT_EXPORT( void ) FT_Add64( FT_Int64* x,
- FT_Int64* y,
- FT_Int64 *z );
+ FT_EXPORT( void )
+ FT_Add64( FT_Int64* x,
+ FT_Int64* y,
+ FT_Int64 *z );
/*************************************************************************/
@@ -117,9 +120,10 @@ FT_BEGIN_HEADER
/* <Note> */
/* Will be wrapped by the MUL_64() macro. */
/* */
- FT_EXPORT( void ) FT_MulTo64( FT_Int32 x,
- FT_Int32 y,
- FT_Int64 *z );
+ FT_EXPORT( void )
+ FT_MulTo64( FT_Int32 x,
+ FT_Int32 y,
+ FT_Int64 *z );
/*************************************************************************/
@@ -141,12 +145,14 @@ FT_BEGIN_HEADER
/* <Note> */
/* Will be wrapped by the DIV_64() macro. */
/* */
- FT_EXPORT( FT_Int32 ) FT_Div64by32( FT_Int64* x,
- FT_Int32 y );
+ FT_EXPORT( FT_Int32 )
+ FT_Div64by32( FT_Int64* x,
+ FT_Int32 y );
#define SQRT_64( z ) FT_Sqrt64( &z )
+
/*************************************************************************/
/* */
/* <Function> */
@@ -163,7 +169,9 @@ FT_BEGIN_HEADER
/* <Return> */
/* The 32-bit square-root. */
/* */
- FT_EXPORT( FT_Int32 ) FT_Sqrt64( FT_Int64* x );
+ FT_EXPORT( FT_Int32 )
+ FT_Sqrt64( FT_Int64* x );
+
#endif /* !FT_LONG64 */
@@ -178,6 +186,7 @@ FT_BEGIN_HEADER
#define SQRT_32( x ) FT_Sqrt32( x )
+
/*************************************************************************/
/* */
/* <Function> */
@@ -193,7 +202,9 @@ FT_BEGIN_HEADER
/* <Return> */
/* The result of `sqrt(x)'. */
/* */
- FT_EXPORT( FT_Int32 ) FT_Sqrt32( FT_Int32 x );
+ FT_EXPORT( FT_Int32 )
+ FT_Sqrt32( FT_Int32 x );
+
#endif /* !FT_CONFIG_OPTION_OLD_CALCS */