Blame doc/fcrange.fncs

Packit 352660
/*
Packit 352660
 * fontconfig/doc/fcrange.fncs
Packit 352660
 *
Packit 352660
 * Copyright © 2003 Keith Packard
Packit 352660
 *
Packit 352660
 * Permission to use, copy, modify, distribute, and sell this software and its
Packit 352660
 * documentation for any purpose is hereby granted without fee, provided that
Packit 352660
 * the above copyright notice appear in all copies and that both that
Packit 352660
 * copyright notice and this permission notice appear in supporting
Packit 352660
 * documentation, and that the name of the author(s) not be used in
Packit 352660
 * advertising or publicity pertaining to distribution of the software without
Packit 352660
 * specific, written prior permission.  The authors make no
Packit 352660
 * representations about the suitability of this software for any purpose.  It
Packit 352660
 * is provided "as is" without express or implied warranty.
Packit 352660
 *
Packit 352660
 * THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
Packit 352660
 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
Packit 352660
 * EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
Packit 352660
 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
Packit 352660
 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
Packit 352660
 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
Packit 352660
 * PERFORMANCE OF THIS SOFTWARE.
Packit 352660
 */
Packit 352660
@RET@		FcRange *
Packit 352660
@FUNC@		FcRangeCopy
Packit 352660
@TYPE1@		const FcRange *			@ARG1@		range
Packit 352660
@PURPOSE@	Copy a range object
Packit 352660
@DESC@
Packit 352660
<function>FcRangeCopy</function> creates a new FcRange object and
Packit 352660
populates it with the contents of <parameter>range</parameter>.
Packit 352660
@SINCE@		2.11.91
Packit 352660
@@
Packit 352660
Packit 352660
@RET@		FcRange *
Packit 352660
@FUNC@		FcRangeCreateDouble
Packit 352660
@TYPE1@		double				@ARG1@		begin
Packit 352660
@TYPE2@		double				@ARG2@		end
Packit 352660
@PURPOSE@	create a range object for double
Packit 352660
@DESC@
Packit 352660
<function>FcRangeCreateDouble</function> creates a new FcRange object with
Packit 352660
double sized value.
Packit 352660
@SINCE@		2.11.91
Packit 352660
@@
Packit 352660
Packit 352660
@RET@		FcRange *
Packit 352660
@FUNC@		FcRangeCreateInteger
Packit 352660
@TYPE1@		int				@ARG1@		begin
Packit 352660
@TYPE2@		int				@ARG2@		end
Packit 352660
@PURPOSE@	create a range object for integer
Packit 352660
@DESC@
Packit 352660
<function>FcRangeCreateInteger</function> creates a new FcRange object with
Packit 352660
integer sized value.
Packit 352660
@SINCE@		2.11.91
Packit 352660
@@
Packit 352660
Packit 352660
@RET@		void
Packit 352660
@FUNC@		FcRangeDestroy
Packit 352660
@TYPE1@		FcRange *			@ARG1@		range
Packit 352660
@PURPOSE@	destroy a range object
Packit 352660
@DESC@
Packit 352660
<function>FcRangeDestroy</function> destroys a FcRange object, freeing
Packit 352660
all memory associated with it.
Packit 352660
@SINCE@		2.11.91
Packit 352660
@@
Packit 352660
Packit 352660
@RET@		FcBool
Packit 352660
@FUNC@		FcRangeGetDouble
Packit 352660
@TYPE1@		const FcRange *			@ARG1@		range
Packit 352660
@TYPE2@		double *      			@ARG2@		begin
Packit 352660
@TYPE3@		double *			@ARG3@		end
Packit 352660
@PURPOSE@	Get the range in double
Packit 352660
@DESC@
Packit 352660
Returns in <parameter>begin</parameter> and <parameter>end</parameter> as the range.
Packit 352660
@SINCE@		2.11.91
Packit 352660
@@