GRASS GIS 8 Programmer's Manual
8.2.2dev(2023)-3d2c704037
datetime/copy.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
/*!
11
* \brief
12
*
13
* Copies the DateTime [into/from ???] src
14
*
15
* \param dst
16
* \param src
17
* \return void
18
*/
19
20
void
datetime_copy
(
DateTime
*
dst
,
const
DateTime
* src)
21
{
22
memcpy(dst, src,
sizeof
(
DateTime
));
23
}
dst
char * dst
Definition:
lz4.h:599
datetime.h
datetime_copy
void datetime_copy(DateTime *dst, const DateTime *src)
Copies the DateTime [into/from ???] src.
Definition:
datetime/copy.c:20
DateTime
Definition:
datetime.h:17
lib
datetime
copy.c
Generated on Tue Feb 14 2023 05:55:58 for GRASS GIS 8 Programmer's Manual by
1.8.13