1ICLOEM(3NCARG) NCAR GRAPHICS ICLOEM(3NCARG)
2
3
4
6 ICLOEM - Called to get the length of the non-blank portion of an error
7 message.
8
10 LNGTH = ICLOEM(MESSG)
11
13 #include <ncarg/ncargC.h>
14
15 int c_icloem(char *messg)
16
18 The value of the expression "ICLOEM(MESSG)" is the actual length of the
19 non-blank portion of the input character variable MESSG. Thus,
20 "MESSG(1:ICLOEM(MESSG))" is the non-blank part of MESSG. (It is
21 assumed that the non-blank part of MESSG is left-justified in the
22 character string, with blank fill to the right, as is the case for all
23 NCAR Graphics error messages in calls to SETER.)
24
25 The argument of ICLOEM is as follows:
26
27
28 MESSG (an input variable or constant of type CHARACTER) - Most
29 likely an error message returned by a reference to the
30 function SEMESS.
31
33 The C-binding argument descriptions are the same as the FORTRAN
34 argument descriptions.
35
37 Use the ncargex command to see the following relevant examples: tseter,
38 arex02.
39
41 To use ICLOEM or c_icloem, load the NCAR Graphics libraries ncarg,
42 ncarg_gks, and ncarg_c, preferably in that order.
43
45 Online: entsr, eprin, errof, error_handling, fdum, icfell, nerro,
46 retsr, semess, seter, ncarg_cbind
47
49 Copyright (C) 1987-2009
50 University Corporation for Atmospheric Research
51 The use of this Software is governed by a License Agreement.
52
53
54
55UNIX March 1994 ICLOEM(3NCARG)