Lines Matching defs:buf
231 struct stat buf ;
249 if (stat (filename, &buf) != 0)
253 stat_size = buf.st_size ;
255 if (fstat (fd, &buf) != 0)
259 fstat_size = buf.st_size ;
281 struct stat buf ;
302 stat (filename, &buf) ;
303 printf (" File size is %d bytes.\n", (int) buf.st_size) ;
311 stat (filename, &buf) ;
312 printf (" File size is %d bytes.\n", (int) buf.st_size) ;