/***********************************************************************
* Code listing from "Advanced Linux Programming," by CodeSourcery LLC *
* Copyright (C) 2001 by New Riders Publishing *
* See COPYRIGHT for license information. *
***********************************************************************/
#include
#include
#include
#include
#include
#include
#include
/* Return a character string representing the current date and time. */
char* get_timestamp ()
{
time_t now = time (NULL);
return asctime (localtime (&now));
}
int main (int argc, char* argv[])
{
/* The file to which to append the timestamp. */
char* filename = argv[1];
/* Get the current timestamp. */
char* timestamp = get_timestamp ();
/* Open the file for writing. If it exists, append to it;
otherwise, create a new file. */
int fd = open (filename, O_WRONLY | O_CREAT | O_APPEND, 0666);
/* Compute the length of the timestamp string. */
size_t length = strlen (timestamp);
/* Write the timestamp to the file. */
write (fd, timestamp, length);
/* All done. */
close (fd);
return 0;
}