]> pd.if.org Git - pdclib/blob - functions/stdio/gets.c
43c120e570bd93a87cfa5ba8e729712f3e91ed5e
[pdclib] / functions / stdio / gets.c
1 /* gets( char * )
2
3    This file is part of the Public Domain C Library (PDCLib).
4    Permission is granted to use, modify, and / or redistribute at will.
5 */
6
7 #include <stdio.h>
8
9 #ifndef REGTEST
10 #include <_PDCLIB_io.h>
11 #include <stdint.h>
12
13 char * gets( char * s )
14 {
15     _PDCLIB_flockfile( stdin );
16     if ( _PDCLIB_prepread( stdin ) == EOF )
17     {
18         _PDCLIB_funlockfile( stdin );
19         return NULL;
20     }
21     char * dest = s;
22     
23     dest += _PDCLIB_getchars( dest, SIZE_MAX, '\n', stdin );
24     _PDCLIB_funlockfile( stdin );
25
26     if(*(dest - 1) == '\n') {
27         *(--dest) = '\0';
28     } else {
29         *dest = '\0';
30     }
31
32     return ( dest == s ) ? NULL : s;
33 }
34
35 #endif
36
37 #ifdef TEST
38 #include <_PDCLIB_test.h>
39 #include <string.h>
40
41 int main( void )
42 {
43     FILE * fh;
44     char buffer[10];
45     char const * gets_test = "foo\nbar\0baz\nweenie";
46     TESTCASE( ( fh = fopen( testfile, "wb" ) ) != NULL );
47     TESTCASE( fwrite( gets_test, 1, 18, fh ) == 18 );
48     TESTCASE( fclose( fh ) == 0 );
49     TESTCASE( ( fh = freopen( testfile, "rb", stdin ) ) != NULL );
50     TESTCASE( gets( buffer ) == buffer );
51     TESTCASE( strcmp( buffer, "foo" ) == 0 );
52     TESTCASE( gets( buffer ) == buffer );
53     TESTCASE( memcmp( buffer, "bar\0baz\0", 8 ) == 0 );
54     TESTCASE( gets( buffer ) == buffer );
55     TESTCASE( strcmp( buffer, "weenie" ) == 0 );
56     TESTCASE( feof( fh ) );
57     TESTCASE( fseek( fh, -1, SEEK_END ) == 0 );
58     TESTCASE( gets( buffer ) == buffer );
59     TESTCASE( strcmp( buffer, "e" ) == 0 );
60     TESTCASE( feof( fh ) );
61     TESTCASE( fseek( fh, 0, SEEK_END ) == 0 );
62     TESTCASE( gets( buffer ) == NULL );
63     TESTCASE( fclose( fh ) == 0 );
64     TESTCASE( remove( testfile ) == 0 );
65     return TEST_RESULTS;
66 }
67
68 #endif
69