1SFGETC(3NCARG) NCAR GRAPHICS SFGETC(3NCARG)
2
3
4
6 SFGETC - Used to retrieve the current value of a specified internal
7 parameter.
8
10 CALL SFGETC (CNP,CVP)
11
13 #include <ncarg/ncargC.h>
14
15 void c_sfgetc (char *cnp, char *cvp, int len)
16
18 CNP (an input expression of type CHARACTER) is the name of an
19 internal parameter of SOFTFILL. Currently, the only legal
20 value is 'CH' (or any longer string beginning with 'CH'),
21 which stands for "CHaracter".
22
23 CVP (an output variable of type CHARACTER) is the name of a
24 variable into which the value of the parameter specified by
25 CNP is to be retrieved.
26
28 The C-binding argument descriptions are the same as the FORTRAN
29 argument descriptions with the following exception:
30
31 len Size of cvp as dimensioned in the calling program.
32
34 This routine allows you to retrieve the current value of Softfill
35 parameters. For a complete list of parameters available in this
36 utility, see the softfill_params man page.
37
39 To use SFGETC or c_sfgetc, load the NCAR Graphics libraries ncarg,
40 ncarg_gks, and ncarg_c, preferably in that order.
41
43 See the softfill man page for a description of all Softfill error
44 messages and/or informational messages.
45
47 Online: softfill, softfill_params, sfgeti, sfgetp, sfgetr, sfseti,
48 sfsetp, sfsetr, sfsgfa, sfwrld, ncarg_cbind
49
50 Hardcopy: NCAR Graphics Fundamentals, UNIX Version
51
53 Copyright (C) 1987-2009
54 University Corporation for Atmospheric Research
55
56 The use of this Software is governed by a License Agreement.
57
58
59
60UNIX March 1993 SFGETC(3NCARG)