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

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dperlio.c2048 SSize_t take = 0; local
2050 take = ((SSize_t)count < avail) ? count : avail;
2051 if (take > 0) {
2053 Copy(ptr, buf, take, STDCHAR);
2054 PerlIO_set_ptrcnt(f, ptr + take, (avail -= take));
2055 count -= take;
2056 buf += take;
3556 * which may hang on a pipe etc. Instead take anything it has to

Completed in 101 milliseconds