Subversion Repositories Kolibri OS

Rev

Rev 8622 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
8622 Boppan 1
#include 
2
#include 
3
 
4
int fputs(const char *str, FILE *stream){
8624 Boppan 5
    for(size_t i = 0; i < strlen(str); i++){
6
        if (fputc(str[i], stream) == EOF) {
7
        	return EOF;
8
        }
8622 Boppan 9
    }
8624 Boppan 10
    return 0;
8622 Boppan 11
}