filewr.c revision 23a0898a
1/* $Xorg: filewr.c,v 1.4 2001/02/09 02:04:03 xorgcvs Exp $ */
2
3/*
4
5Copyright 1991, 1998  The Open Group
6
7Permission to use, copy, modify, distribute, and sell this software and its
8documentation for any purpose is hereby granted without fee, provided that
9the above copyright notice appear in all copies and that both that
10copyright notice and this permission notice appear in supporting
11documentation.
12
13The above copyright notice and this permission notice shall be included in
14all copies or substantial portions of the Software.
15
16THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
19OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
20AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
23Except as contained in this notice, the name of The Open Group shall not be
24used in advertising or otherwise to promote the sale, use or other dealings
25in this Software without prior written authorization from The Open Group.
26
27*/
28/* $XFree86: xc/lib/font/fontfile/filewr.c,v 3.6 2001/12/14 19:56:51 dawes Exp $ */
29
30/*
31 * Author:  Keith Packard, MIT X Consortium
32 */
33
34#ifdef HAVE_CONFIG_H
35#include <config.h>
36#endif
37#include <X11/fonts/fntfilio.h>
38#include <X11/Xos.h>
39
40FontFilePtr
41FontFileOpenWrite (const char *name)
42{
43    int	fd;
44
45#if defined(WIN32) || defined(__UNIXOS2__) || defined(__CYGWIN__)
46    fd = open (name, O_CREAT|O_TRUNC|O_RDWR|O_BINARY, 0666);
47#else
48    fd = creat (name, 0666);
49#endif
50    if (fd < 0)
51	return 0;
52    return (FontFilePtr) BufFileOpenWrite (fd);
53}
54
55FontFilePtr
56FontFileOpenWriteFd (int fd)
57{
58    return (FontFilePtr) BufFileOpenWrite (fd);
59}
60
61FontFilePtr
62FontFileOpenFd (int fd)
63{
64    return (FontFilePtr) BufFileOpenRead (fd);
65}
66