shithub: npe

ref: 1f24e2a0c85f9250d71225db08f05b126c320a0c
dir: /include/npe/utime.h/

View raw version
#ifndef _npe_utime_h_
#define _npe_utime_h_

#include <time.h>

struct utimbuf{
	time_t actime;
	time_t modtime;
};

int utime(const char *path, const struct utimbuf *times);

#endif