GRASS Programmer's Manual  6.5.svn(2014)-r66266
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
same.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 1995. Bill Brown <brown@gis.uiuc.edu> & Michael Shapiro
3  *
4  * This program is free software under the GPL (>=v2)
5  * Read the file GPL.TXT coming with GRASS for details.
6  */
7 #include <string.h>
8 #include <grass/datetime.h>
9 
10 
23 int datetime_is_same(const DateTime * src, const DateTime * dst)
24 {
25  /* WARNING: doesn't allow for padding */
26  return memcmp(src, dst, sizeof(DateTime)) == 0;
27 }
int datetime_is_same(const DateTime *src, const DateTime *dst)
Returns: 1 if &#39;src&#39; is exactly the same as &#39;dst&#39; 0 if they differ.
Definition: same.c:23