Added CORBA interface to the archiver
This commit is contained in:
parent
7c531bc29e
commit
4e6a3b89d6
28 changed files with 2258 additions and 1121 deletions
|
@ -95,3 +95,13 @@ parse_date (char *str)
|
|||
|
||||
return date;
|
||||
}
|
||||
|
||||
struct tm *
|
||||
dup_date (const struct tm *date)
|
||||
{
|
||||
struct tm *date1;
|
||||
|
||||
date1 = g_new (struct tm, 1);
|
||||
memcpy (date1, date, sizeof (struct tm));
|
||||
return date1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue