OSDN Git Service

FIRST REPOSITORY
[eos/hostdependOTHERS.git] / I386LINUX / util / I386LINUX / man / man3 / TIFFmemory.3t
1 .\" $Header: /CVS_DB/Eos/util/I386LINUX/man/man3/TIFFmemory.3t,v 1.1.1.1 2002/02/01 06:40:34 tacyas Exp $
2 .\"
3 .\" Copyright (c) 1995 Sam Leffler
4 .\" Copyright (c) 1995 Silicon Graphics, Inc.
5 .\"
6 .\" Permission to use, copy, modify, distribute, and sell this software and 
7 .\" its documentation for any purpose is hereby granted without fee, provided
8 .\" that (i) the above copyright notices and this permission notice appear in
9 .\" all copies of the software and related documentation, and (ii) the names of
10 .\" Sam Leffler and Silicon Graphics may not be used in any advertising or
11 .\" publicity relating to the software without the specific, prior written
12 .\" permission of Sam Leffler and Silicon Graphics.
13 .\" 
14 .\" THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
15 .\" EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
16 .\" WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
17 .\" 
18 .\" IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
19 .\" ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
20 .\" OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
21 .\" WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
22 .\" LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
23 .\" OF THIS SOFTWARE.
24 .\"
25 .if n .po 0
26 .TH MEMORY 3T "October 15, 1995"
27 .SH NAME
28 _TIFFmalloc, \c
29 _TIFFrealloc, \c
30 _TIFFfree, \c
31 _TIFFmemset, \c
32 _TIFFmemcpy, \c
33 _TIFFmemcmp, \c
34 \- memory management-related functions for use with
35 .SM TIFF
36 files
37 .SH SYNOPSIS
38 .nf
39 .B "#include <tiffio.h>"
40 .B "tdata_t _TIFFmalloc(tsize_t);"
41 .B "tdata_t _TIFFrealloc(tdata_t, tsize_t);"
42 .B "void _TIFFfree(tdata_t);"
43 .B "void _TIFFmemset(tdata_t, int, tsize_t);"
44 .B "void _TIFFmemcpy(tdata_t, const tdata_t, tsize_t);"
45 .B "int _TIFFmemcmp(const tdata_t, const tdata_t, tsize_t);"
46 .fi
47 .SH DESCRIPTION
48 These routines are provided for writing portable software that uses 
49 .IR libtiff ;
50 they hide any memory-management related issues, such as dealing with
51 segmented architectures found on 16-bit machines.
52 .PP
53 .I _TIFFmalloc
54 and
55 .I _TIFFrealloc
56 are used to dynamically allocate and reallocate memory used by 
57 .IR libtiff ;
58 such as memory passed into the I/O routines.
59 Memory allocated through these interfaces is released back to the
60 system using the
61 .I _TIFFfree
62 routine.
63 .PP
64 Memory allocated through one of the above interfaces can be set to
65 a known value using
66 .IR _TIFFmemset ,
67 copied to another memory location using
68 .IR _TIFFmemcpy ,
69 or compared for equality using 
70 .IR _TIFFmemcmp .
71 These routines conform to the equivalent
72 .SM ANSI
73 C routines: 
74 .IR memset ,
75 .IR memcpy ,
76 and
77 .IR memcmp ,
78 repsectively.
79 .SH DIAGNOSTICS
80 None.
81 .SH "SEE ALSO"
82 .IR libtiff (3T),
83 .IR malloc (3C),
84 .IR memory (3C)