GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
xt_ff_dopen(3) FreeBSD Library Functions Manual xt_ff_dopen(3)

xt_ff_dopen() - Create a fast file stream from a file descriptor

#include <fcntl.h>
#include <xtend/fast-file.h>
-lxtend

xt_ff_t *xt_ff_dopen(int fd, int flags)

fd          Open file descriptor to which stream is attached
flags       Bit flags passed to open(3)

xt_ff_dopen(3) initializes a xt_ff_t stream, much as fdopen(3) does for a FILE stream. Unlike fdopen(3), xt_ff_dopen(3) takes the same bit mask argument as open(2) to determine the open mode. See open(3) for details.

An optimally sized buffer for the underlying filesystem is allocated, along with additional space for limited xt_ff_ungetc(3) operations.

The xt_ff_t system is simpler than and much faster than traditional FILE on typical systems. It is intended for processing large files character-by-character, where low-level block I/O is not convenient, but FILE I/O causes a bottleneck.

A pointer to a xt_ff_t object on success, NULL on failure

xt_ff_t *stream;
char    *filename;
int     fd;
fd = open(filename, O_RDONLY);
stream = xt_ff_dopen(fd, O_RDONLY);

xt_ff_open(3), open(3)


Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.