Flashnux

GNU/Linux man pages

Livre :
Expressions régulières,
Syntaxe et mise en oeuvre :

ISBN : 978-2-7460-9712-4
EAN : 9782746097124
(Editions ENI)

GNU/Linux

RedHat 5.2

(Apollo)

mktemp(3)


MKTEMP

MKTEMP

NAME
SYNOPSIS
DESCRIPTION
RETURN VALUE
ERRORS
CONFORMING TO
SEE ALSO

NAME

mktemp − make a unique temporary file name

SYNOPSIS

#include <unistd.h>

char *mktemp(char *template);

DESCRIPTION

The mktemp() function generates a unique temporary file name from template. The last six characters of template must be XXXXXX and these are replaced with a string that makes the filename unique.

RETURN VALUE

The mktemp() function returns a pointer to template on success, and NULL on failure.

ERRORS

EINVAL

The last six characters of template were not XXXXXX.

CONFORMING TO

BSD 4.3. POSIX dictates tmpnam().

SEE ALSO

mkstemp(3), tmpnam(3), tempnam(3), tmpfile(3)



mktemp(3)