GRASS 8 Programmer's Manual 8.6.0dev(2026)-55de52a352
Loading...
Searching...
No Matches
datetime/copy.c
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 1995 Bill Brown <brown@gis.uiuc.edu>
3 * SPDX-FileCopyrightText: 1995 Michael Shapiro
4 * SPDX-FileCopyrightText: GRASS Development Team
5 * SPDX-License-Identifier: GPL-2.0-or-later
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 */
19void datetime_copy(DateTime *dst, const DateTime *src)
20{
21 memcpy(dst, src, sizeof(DateTime));
22}
void datetime_copy(DateTime *dst, const DateTime *src)
Copies the DateTime [into/from ???] src.