mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
fix a FIXME note
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8117 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
f8e733bb52
commit
e701237359
@ -63,7 +63,8 @@ typedef enum
|
|||||||
|
|
||||||
/** Datatypes *******************************************************/
|
/** Datatypes *******************************************************/
|
||||||
|
|
||||||
/** struct timespec64 is just like timespec except that we use a 64-bit
|
/** struct timespec64 is just like the unix 'struct timespec' except
|
||||||
|
* that we use a 64-bit
|
||||||
* signed int to store the seconds. This should adequately cover
|
* signed int to store the seconds. This should adequately cover
|
||||||
* dates in the distant future as well as the distant past, as long as
|
* dates in the distant future as well as the distant past, as long as
|
||||||
* they're not more than a couple dozen times the age of the universe.
|
* they're not more than a couple dozen times the age of the universe.
|
||||||
@ -81,8 +82,8 @@ struct timespec64
|
|||||||
};
|
};
|
||||||
#endif /* SWIG */
|
#endif /* SWIG */
|
||||||
|
|
||||||
/** The Timespec is just like timespec (FIXME: huh? like what?
|
/** The Timespec is just like the unix 'struct timespec'
|
||||||
* probably: like time_t) except that we use a 64-bit signed int to
|
* except that we use a 64-bit signed int to
|
||||||
* store the seconds. This should adequately cover dates in the
|
* store the seconds. This should adequately cover dates in the
|
||||||
* distant future as well as the distant past, as long as they're not
|
* distant future as well as the distant past, as long as they're not
|
||||||
* more than a couple dozen times the age of the universe. Note that
|
* more than a couple dozen times the age of the universe. Note that
|
||||||
@ -127,14 +128,14 @@ Timespec gnc_dmy2timespec (int day, int month, int year);
|
|||||||
/** Same as gnc_dmy2timespec, but last second of the day */
|
/** Same as gnc_dmy2timespec, but last second of the day */
|
||||||
Timespec gnc_dmy2timespec_end (int day, int month, int year);
|
Timespec gnc_dmy2timespec_end (int day, int month, int year);
|
||||||
|
|
||||||
/** The gnc_iso8601_to_timespec_xxx() routines converts an ISO-8601 style
|
/** The gnc_iso8601_to_timespec_local() routine converts an ISO-8601 style
|
||||||
* date/time string to Timespec.
|
* date/time string to Timespec.
|
||||||
* For example: 1998-07-17 11:00:00.68-05
|
* For example: 1998-07-17 11:00:00.68-05
|
||||||
* is 680 milliseconds after 11 o'clock, central daylight time
|
* is 680 milliseconds after 11 o'clock, central daylight time
|
||||||
* \return The time in local time.*/
|
* \return The time in local time.*/
|
||||||
Timespec gnc_iso8601_to_timespec_local(const char *);
|
Timespec gnc_iso8601_to_timespec_local(const char *);
|
||||||
|
|
||||||
/** The gnc_iso8601_to_timespec_xxx() routines converts an ISO-8601 style
|
/** The gnc_iso8601_to_timespec_gmt() routine converts an ISO-8601 style
|
||||||
* date/time string to Timespec.
|
* date/time string to Timespec.
|
||||||
* For example: 1998-07-17 11:00:00.68-05
|
* For example: 1998-07-17 11:00:00.68-05
|
||||||
* is 680 milliseconds after 11 o'clock, central daylight time
|
* is 680 milliseconds after 11 o'clock, central daylight time
|
||||||
|
Loading…
Reference in New Issue
Block a user