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-2007
50 University Corporation for Atmospheric Research
51
52 This documentation is free software; you can redistribute it and/or
53 modify it under the terms of the GNU General Public License as
54 published by the Free Software Foundation; either version 2 of the
55 License, or (at your option) any later version.
56
57 This software is distributed in the hope that it will be useful, but
58 WITHOUT ANY WARRANTY; without even the implied warranty of
59 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
60 General Public License for more details.
61
62 You should have received a copy of the GNU General Public License along
63 with this software; if not, write to the Free Software Foundation,
64 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
65
66
67
68UNIX March 1994 ICLOEM(3NCARG)