X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdio%2Ftmpnam.c;h=6e8641d380bdf233051aa86475fc93d675f38a42;hp=69edae79bb0cfd9853ac3910771b38874d736efc;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hpb=1d9d92ba957a0b8307c9a65c35867fde68e6533b diff --git a/functions/stdio/tmpnam.c b/functions/stdio/tmpnam.c index 69edae7..6e8641d 100644 --- a/functions/stdio/tmpnam.c +++ b/functions/stdio/tmpnam.c @@ -1,22 +1,41 @@ -/* ---------------------------------------------------------------------------- - * $Id$ - * ---------------------------------------------------------------------------- - * Public Domain C Library - http://pdclib.sourceforge.net - * This code is Public Domain. Use, modify, and redistribute at will. - * --------------------------------------------------------------------------*/ +/* tmpnam( char * ) -char * tmpnam( char * s ) { /* TODO */ }; + This file is part of the Public Domain C Library (PDCLib). + Permission is granted to use, modify, and / or redistribute at will. +*/ -/* PDPC code - unreviewed -{ - static char buf[] = "ZZZZZZZA.$$$"; +#include + +#ifndef REGTEST + +#include +#include "_PDCLIB_io.h" - buf[7]++; - if (s == NULL) +char * tmpnam( char * s ) +{ + static char filename[ L_tmpnam ]; + FILE * file = tmpfile(); + if ( s == NULL ) { - return (buf); + s = filename; } - strcpy(s, buf); - return (s); + strcpy( s, file->filename ); + fclose( file ); + return s; } -*/ + +#endif + +#ifdef TEST +#include "_PDCLIB_test.h" + +#include + +int main( void ) +{ + TESTCASE( strlen( tmpnam( NULL ) ) < L_tmpnam ); + return TEST_RESULTS; +} + +#endif +