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-2009
57 University Corporation for Atmospheric Research
58 The use of this Software is governed by a License Agreement.
59
60
61
62UNIX March 1995 DPGETC(3NCARG)