Sponsored Content
Full Discussion: stdio.h vs unistd.h I/O
Top Forums Programming stdio.h vs unistd.h I/O Post 302453215 by majid.merkava on Tuesday 14th of September 2010 11:36:12 AM
Old 09-14-2010
Thank you very much.
 

6 More Discussions You Might Find Interesting

1. Programming

Atomic Read and Write with stdio

hi guys. can we use fread and fwrite with pipes to write data more than PIPE_BUF atomically since they lock FILE object until I/O operation finish? (1 Reply)
Discussion started by: majid.merkava
1 Replies

2. Programming

FILE structure - stdio.h

Hi All, I am new to linux and Programming. Inside the file stdio.h, there is a description about FILE structure. Which has many internal data members like _p, _r, _flags etc. I have written a sample code to find out the contents of the FILE structure. It opens a sample file ( FILE *fp ),... (5 Replies)
Discussion started by: nikunjbadjatya
5 Replies

3. Programming

stdio.h not found on Solaris 11

Hi friends, I hope u r doing well. I have just installed Solaris 11, and it seems that solaris 11 doesn't come with all the packages, one has to do everything manually. I download gcc from sunfreeware.com and installed it. After setting up the path variable, I tried to compile the hello world... (4 Replies)
Discussion started by: gabam
4 Replies

4. Solaris

fatal error: stdio.h: No such file or directory

Trying to compile a C program recievin this hello.c:1:19: fatal error: stdio.h: No such file or directory gcc is installed on the system. echo $PATH /usr/bin:/usr/sbin:/usr/gcc/4.5/include/c++/4.5.2/tr1 root@Sol11swtb01:/media/NO NAME/Programming/C/Testing# cd... (2 Replies)
Discussion started by: Fingerz
2 Replies

5. Programming

Ignoring the stdio.h file in a C file

I am facing a problem in the below given code. int main() { printf("\nHello Geeks\n\n") ; return 0 ; } In the above mentioned code i left including "#include ". And if i compile and execute this piece of code, the output is printed as expected. But "#include " being the most important... (7 Replies)
Discussion started by: Raj 89
7 Replies

6. Programming

C++ : is what the meaning of #include<stdio.h>?

Hello Guys, I'm new in programing line & just started from C++ programs but i don't know the meaning of #include<stdio.h> file....Guys tell me what's the working of this file in C++ program?? I'm confused... Title changed: Please use a descriptive subject text, and not C++?? (3 Replies)
Discussion started by: ggiwebsinfo
3 Replies
buffer(3)						     Library Functions Manual							 buffer(3)

NAME
buffer.h - generic read/write buffering SYNTAX
#include <buffer.h> buffer* buffer_0; /* like stdio's stdin */ buffer* buffer_1; /* like stdio's stdout */ buffer* buffer_2; /* like stdio's stderr */ DESCRIPTION
buffer.h provides a generic buffer interface that can be used for read and write buffering. Buffers must be initialized with buffer_init. A buffer can only be used for reading or writing at the same time, not both. Unlike stdio, these write buffers are not flushed automatically at program termination; you must manually call buffer_flush, buf- fer_putsflush, buffer_putflush or buffer_putnlflush. EXAMPLE
See buffer_init(3) for example read buffer code. Here is typical code for printing an error message on stderr: #include <buffer.h> buffer_puts(buffer_2,"error: got only "); buffer_putulong(buffer_2,got); buffer_puts(buffer_2," bytes, but expected at least "); buffer_putulong(buffer_2,expected); buffer_putsflush(buffer_2," bytes!"); SEE ALSO
buffer_init(3), buffer_put(3), buffer_get(3), buffer_flush(3) buffer(3)
All times are GMT -4. The time now is 06:45 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy