X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ftmpnam.c;h=270109d91fdf710d87e36bce4658d718908e1d39;hb=cd6cfe0f578c4f744ddc9a342243aff6b42f8027;hp=69edae79bb0cfd9853ac3910771b38874d736efc;hpb=c8f799d852e3698468a78954d82588e841cc0b70;p=pdclib.old diff --git a/functions/stdio/tmpnam.c b/functions/stdio/tmpnam.c index 69edae7..270109d 100644 --- a/functions/stdio/tmpnam.c +++ b/functions/stdio/tmpnam.c @@ -1,22 +1,43 @@ -/* ---------------------------------------------------------------------------- - * $Id$ - * ---------------------------------------------------------------------------- - * Public Domain C Library - http://pdclib.sourceforge.net - * This code is Public Domain. Use, modify, and redistribute at will. - * --------------------------------------------------------------------------*/ +/* $Id$ */ -char * tmpnam( char * s ) { /* TODO */ }; +/* tmpnam( char * ) -/* PDPC code - unreviewed -{ - static char buf[] = "ZZZZZZZA.$$$"; + This file is part of the Public Domain C Library (PDCLib). + Permission is granted to use, modify, and / or redistribute at will. +*/ + +#include + +#ifndef REGTEST - buf[7]++; - if (s == NULL) +#include +#include <_PDCLIB_io.h> + +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 +