forked from KolibriOS/kolibrios
ffca41d7f9
- Added ungetc, tollower and toupper to export - Fixed ungetc emu - Fixed file io functions - Update file_io test git-svn-id: svn://kolibrios.org@8730 a494cfbc-eb01-0410-851d-a64ba20cac60
11 lines
249 B
C
11 lines
249 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
int fputs(const char *str, FILE *stream){
|
|
size_t str_len = strlen(str);
|
|
if(str_len == fwrite(str, sizeof(char), str_len , stream)){
|
|
return str[str_len-1];
|
|
}else{
|
|
return EOF;
|
|
}
|
|
} |