Searched defs:getline (Results 1 - 6 of 6) sorted by relevance

/ndk/sources/host-tools/nawk-20071023/
H A Dproto.h25 /* To avoid conflicts with <stdio.h> getline declaration on Linux */
26 #define getline awk_getline macro
157 extern Cell *getline(Node **, int);
H A Drun.c391 Cell *getline(Node **a, int n) /* get next line from specific input */ function
401 FATAL("out of memory in getline");
405 if (a[1] != NULL) { /* getline < file */
418 } else if (a[0] != NULL) { /* getline var <file */
422 } else { /* getline <file */
429 } else { /* bare getline; use current input */
430 if (a[0] == NULL) /* getline */
432 else { /* getline var */
1636 FATAL("null file name in print or getline");
1663 } else if (a == LT) { /* getline <fil
[all...]
/ndk/sources/host-tools/sed-4.2.1/lib/
H A Dgetline.c3 /* getline.c --- Implementation of replacement getline function.
28 getline (char **lineptr, size_t *n, FILE *stream) function
/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_string_io.h57 getline(basic_istream<_CharT, _Traits>& __is,
65 getline(basic_istream<_CharT, _Traits>& __is, function
67 return getline(__is, __s, __is.widen('\n'));
H A D_string_io.c133 getline(basic_istream<_CharT, _Traits>& __is, function
H A D_istream.h143 public: // getline()
144 _Self& getline(char_type* __s, streamsize __n, char_type delim);
145 _Self& getline(char_type* __s, streamsize __n) function in class:basic_istream
146 { return getline(__s, __n, this->widen('\n')); }

Completed in 724 milliseconds