GRASS Programmer's Manual  6.4.2(2012)
datetime/copy.c
Go to the documentation of this file.
00001 /*
00002  * Copyright (C) 1995.  Bill Brown <brown@gis.uiuc.edu> & Michael Shapiro
00003  *
00004  * This program is free software under the GPL (>=v2)
00005  * Read the file GPL.TXT coming with GRASS for details.
00006  */
00007 #include <string.h>
00008 #include <grass/datetime.h>
00009 
00020 void datetime_copy(DateTime * dst, const DateTime * src)
00021 {
00022     memcpy(dst, src, sizeof(DateTime));
00023 }
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines