]> pd.if.org Git - pdclib/blobdiff - functions/stdio/tmpnam.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdio / tmpnam.c
index fe3a75d9f5f54de3d61861f0e1c1a02c206e05e5..6e8641d380bdf233051aa86475fc93d675f38a42 100644 (file)
@@ -1,8 +1,41 @@
-// ----------------------------------------------------------------------------
-// $Id$
-// ----------------------------------------------------------------------------
-// Public Domain C Library - http://pdclib.sourceforge.net
-// This code is Public Domain. Use, modify, and redistribute at will.
-// ----------------------------------------------------------------------------
-
-char * tmpnam( char * s ) { /* TODO */ };
+/* tmpnam( char * )
+
+   This file is part of the Public Domain C Library (PDCLib).
+   Permission is granted to use, modify, and / or redistribute at will.
+*/
+
+#include <stdio.h>
+
+#ifndef REGTEST
+
+#include <string.h>
+#include "_PDCLIB_io.h"
+
+char * tmpnam( char * s )
+{
+    static char filename[ L_tmpnam ];
+    FILE * file = tmpfile();
+    if ( s == NULL )
+    {
+        s = filename;
+    }
+    strcpy( s, file->filename );
+    fclose( file );
+    return s;
+}
+
+#endif
+
+#ifdef TEST
+#include "_PDCLIB_test.h"
+
+#include <string.h>
+
+int main( void )
+{
+    TESTCASE( strlen( tmpnam( NULL ) ) < L_tmpnam );
+    return TEST_RESULTS;
+}
+
+#endif
+