DCL 3.7.4
Loading...
Searching...
No Matches
_utime.cpp File Reference
#include <dcl/Config.h>
#include <errno.h>
#include <stdlib.h>
#include <dcl/_utime.h>
#include <dcl/Object.h>
#include <dcl/String.h>
#include "__strumbs.h"

Go to the source code of this file.

Functions

__DCL_BEGIN_NAMESPACE int __utime (const String &_filename, struct utimbuf *_buf)

Function Documentation

◆ __utime()

__DCL_BEGIN_NAMESPACE int __utime ( const String & _filename,
struct utimbuf * _buf )
Returns
== NULL or -1, see errno

Definition at line 23 of file _utime.cpp.

24{
25 STRTOMBS_ER(_filename, filename);
26 return utime(filename, _buf);
27}
#define STRTOMBS_ER(str, mbs)
Definition __strumbs.h:33