1DPGETC(3NCARG) NCAR GRAPHICS DPGETC(3NCARG)
2
3
4
6 DPGETC - Retrieves the current character value of an internal
7 parameter.
8
10 CALL DPGETC (PNAM,CVAL)
11
13 #include <ncarg/ncargC.h>
14
15 void c_dpgetc (char *pnam, char *cval, int len)
16
18 PNAM (an input constant or variable of type CHARACTER) specifies
19 the name of the parameter to get. The name must appear as
20 the first three characters of the string. Other characters
21 may be used to document the use of the parameter being
22 retrieved; for example, instead of just ´CRB´, one can use
23 ´CRB - CHARACTER REPRESENTING BREAK´.
24
25 CVAL (an output variable of type CHARACTER) is the name of the
26 variable into which the value of the internal parameter
27 specified by PNAM is to be retrieved.
28
30 The C-binding argument descriptions are the same as the FORTRAN
31 argument descriptions with the following exception:
32
33 len The size of cval as dimensioned in the calling program.
34
36 This routine allows you to retrieve the current value of Dashpack
37 parameters. For a complete list of parameters available in this
38 utility, see the dashpack_params man page.
39
41 To use DPGETC or c_dpgetc, load the NCAR Graphics libraries ncarg,
42 ncarg_gks, and ncarg_c, preferably in that order.
43
45 See the dashpack man page for a description of all Dashpack error
46 messages and/or informational messages.
47
49 Online: dashpack, dashpack_params, dpcurv, dpdraw, dpfrst, dpgeti,
50 dpgetr, dplast, dpline, dpsetc, dpseti, dpsetr, dpsmth, dpvect,
51 ncarg_cbind.
52
53 Hardcopy: None.
54
56 Copyright (C) 1987-2007
57 University Corporation for Atmospheric Research
58
59 This documentation is free software; you can redistribute it and/or
60 modify it under the terms of the GNU General Public License as
61 published by the Free Software Foundation; either version 2 of the
62 License, or (at your option) any later version.
63
64 This software is distributed in the hope that it will be useful, but
65 WITHOUT ANY WARRANTY; without even the implied warranty of
66 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
67 General Public License for more details.
68
69 You should have received a copy of the GNU General Public License along
70 with this software; if not, write to the Free Software Foundation,
71 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
72
73
74
75UNIX March 1995 DPGETC(3NCARG)