1<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
2
3<!-- Process this file with docbook-to-man to generate an nroff manual
4     page: `docbook-to-man manpage.sgml > manpage.1'.  You may view
5     the manual page with: `docbook-to-man manpage.sgml | nroff -man |
6     less'.  A typical entry in a Makefile or Makefile.am is:
7
8manpage.1: manpage.sgml
9	docbook-to-man $< > $@
10
11
12	The docbook-to-man binary is found in the docbook-to-man package.
13	Please remember that if you create the nroff version in one of the
14	debian/rules file targets (such as build), you will need to include
15	docbook-to-man in your Build-Depends control field.
16
17  -->
18
19  <!-- Fill in your name for FIRSTNAME and SURNAME. -->
20  <!ENTITY dhfirstname "<firstname>UWE</firstname>">
21  <!ENTITY dhsurname   "<surname>STEINMANN</surname>">
22  <!-- Please adjust the date whenever revising the manpage. -->
23  <!ENTITY dhdate      "<date>April 28, 2003</date>">
24  <!-- SECTION should be 1-8, maybe w/ subsection other parameters are
25       allowed: see man(7), man(1). -->
26  <!ENTITY dhsection   "<manvolnum>3</manvolnum>">
27  <!ENTITY dhemail     "<email>uwe@steinmann.cx</email>">
28  <!ENTITY dhusername  "Uwe Steinmann">
29  <!ENTITY dhucpackage "<refentrytitle>PS_NEW</refentrytitle>">
30  <!ENTITY funcname    "PS_new">
31
32  <!ENTITY debian      "<productname>Debian</productname>">
33  <!ENTITY gnu         "<acronym>GNU</acronym>">
34  <!ENTITY gpl         "&gnu; <acronym>GPL</acronym>">
35]>
36
37<refentry>
38  <refentryinfo>
39    <address>
40      &dhemail;
41    </address>
42    <author>
43      &dhfirstname;
44      &dhsurname;
45    </author>
46    <copyright>
47      <year>2003</year>
48      <holder>&dhusername;</holder>
49    </copyright>
50    &dhdate;
51  </refentryinfo>
52  <refmeta>
53    &dhucpackage;
54
55    &dhsection;
56  </refmeta>
57  <refnamediv>
58    <refname>&funcname;</refname>
59
60    <refpurpose>Creating a new PostScript document object</refpurpose>
61  </refnamediv>
62  <refsynopsisdiv>
63    <para>#include &lt;pslib.h&gt;</para>
64		<para>PSDoc * &funcname;(void)</para>
65  </refsynopsisdiv>
66  <refsect1>
67    <title>DESCRIPTION</title>
68
69    <para>Creates a new document instance. This function internally calls
70		  PS_new2(3) with all parameters set to NULL. If you do not take care of
71			error handling and memory management yourself, this function should
72			be used for conveniece.
73			</para>
74
75  </refsect1>
76  <refsect1>
77    <title>RETURN VALUE</title>
78    <para>Pointer to new instance of PostScript document or NULL on
79		  failure.</para>
80  </refsect1>
81  <refsect1>
82    <title>SEE ALSO</title>
83
84    <para>PS_new2(3), PS_delete(3)</para>
85
86  </refsect1>
87  <refsect1>
88    <title>AUTHOR</title>
89
90    <para>This manual page was written by &dhusername; &dhemail;.</para>
91
92  </refsect1>
93</refentry>
94
95<!-- Keep this comment at the end of the file
96Local variables:
97mode: sgml
98sgml-omittag:t
99sgml-shorttag:t
100sgml-minimize-attributes:nil
101sgml-always-quote-attributes:t
102sgml-indent-step:2
103sgml-indent-data:t
104sgml-parent-document:nil
105sgml-default-dtd-file:nil
106sgml-exposed-tags:nil
107sgml-local-catalogs:nil
108sgml-local-ecat-files:nil
109End:
110-->
111
112
113