~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to doc/htmlman/htmlman3/lGetChar.html

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<HTML>
 
2
<BODY BGCOLOR=white>
 
3
<PRE>
 
4
<!-- Manpage converted by man2html 3.0.1 -->
 
5
NAME
 
6
     lGet{Type},lGetPos{Type} - get the  field  content  of  type
 
7
     {Type}
 
8
 
 
9
SYNOPSIS
 
10
     #include "cull.h"
 
11
 
 
12
     int lGetInt( lListElem *element, int fieldname );
 
13
 
 
14
     unsigned long lGetUlong(
 
15
          lListElem *element,
 
16
          int fieldname
 
17
     );
 
18
 
 
19
     char* lGetString( lListElem *element, int fieldname );
 
20
 
 
21
     lList* lGetList( lListElem *element, int fieldname );
 
22
 
 
23
     float lGetFloat( lListElem *element, int fieldname );
 
24
 
 
25
     double lGetDouble( lListElem *element, int fieldname );
 
26
 
 
27
     char lGetChar( lListElem *element, int fieldname );
 
28
 
 
29
     long lGetLong( lListElem *element, int fieldname );
 
30
 
 
31
     int lGetPosInt( lListElem *element, int position );
 
32
 
 
33
     unsigned long lGetPosUlong(
 
34
          lListElem *element,
 
35
          int position
 
36
     );
 
37
 
 
38
     char* lGetPosString( lListElem *element, int position );
 
39
 
 
40
     lList* lGetPosList( lListElem *element, int position );
 
41
 
 
42
     float lGetPosFloat( lListElem *element, int position );
 
43
 
 
44
     double lGetPosDouble( lListElem *element, int position );
 
45
 
 
46
     char lGetPosChar( lListElem *element, int position );
 
47
 
 
48
     long lGetPosLong( lListElem *element, int position );
 
49
 
 
50
DESCRIPTION
 
51
     {Type} lGet{Type}( element, fieldname )
 
52
          return the content of the field specified by  fieldname
 
53
          of  list  element  element.  The types of the requested
 
54
          field of list element element and the type {Type}  must
 
55
          be equal.
 
56
 
 
57
     {Type} lGetPos{Type}( element, position )
 
58
          return the content of the field specified  by  position
 
59
          of  list  element  element.  The types of the requested
 
60
          field of list element element and the type {Type}  must
 
61
          be equal.
 
62
 
 
63
RETURN VALUES
 
64
     <I>lGet</I>{<I>Type</I>} and  <I>lGetPos</I>{<I>Type</I>}  return  the  content  of  the
 
65
     specified field corresponding to its {Type}.
 
66
 
 
67
ERRORS
 
68
     The following possible values can occur for lerrno.
 
69
 
 
70
     LEELEMNULL
 
71
          The element pointer specifying the element is NULL.
 
72
 
 
73
SEE ALSO
 
74
     <B><A HREF="../htmlman1/sge_intro.html">sge_intro(1)</A></B>, <B><A HREF="../htmlman3/list_intro.html">list_intro(3)</A></B>, <B><A HREF="../htmlman3/lSetInt.html">lSetInt(3)</A></B>.
 
75
 
 
76
COPYRIGHT
 
77
     See <B><A HREF="../htmlman1/sge_intro.html">sge_intro(1)</A></B> for a full statement of rights and  permis-
 
78
     sions.
 
79
 
 
80
 
 
81
 
 
82
 
 
83
 
 
84
 
 
85
 
 
86
 
 
87
 
 
88
 
 
89
 
 
90
 
 
91
 
 
92
 
 
93
 
 
94
 
 
95
 
 
96
 
 
97
 
 
98
 
 
99
 
 
100
 
 
101
 
 
102
 
 
103
 
 
104
 
 
105
 
 
106
 
 
107
 
 
108
 
 
109
</PRE>
 
110
<HR>
 
111
<ADDRESS>
 
112
Man(1) output converted with
 
113
<a href="http://www.oac.uci.edu/indiv/ehood/man2html.html">man2html</a>
 
114
</ADDRESS>
 
115
</BODY>
 
116
</HTML>