DCL 4.0
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 20 of file _utime.cpp.

21{
22 STRTOMBS_ER(_filename, filename);
23 return utime(filename, _buf);
24}
#define STRTOMBS_ER(str, mbs)
Definition __strumbs.h:33