www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - core.stdc.time

reply Tony <tonytdominguez aol.com> writes:
The documentation says:
------------------------------------------------------
This module contains bindings to selected types and functions 
from the standard C header <time.h>. Note that this is not 
automatically generated, and may omit some types/functions from 
the original C header.
-------------------------------------------------------

It says "this is not automatically generated". I am seeing it on 
my Ubuntu Linux system. What would cause it to not be generated 
and what would be the solution?
Sep 29 2017
parent reply Jacob Carlborg <doob me.com> writes:
On 2017-09-30 08:56, Tony wrote:
 The documentation says:
 ------------------------------------------------------
 This module contains bindings to selected types and functions from the
 standard C header <time.h>. Note that this is not automatically
 generated, and may omit some types/functions from the original C header.
 -------------------------------------------------------

 It says "this is not automatically generated". I am seeing it on my
 Ubuntu Linux system. What would cause it to not be generated and what
 would be the solution?
It means that it's manually translated from C to D and not translated automatically using some tool. -- /Jacob Carlborg
Sep 30 2017
parent Tony <tonytdominguez aol.com> writes:
On Saturday, 30 September 2017 at 07:45:27 UTC, Jacob Carlborg 
wrote:
 On 2017-09-30 08:56, Tony wrote:
 The documentation says:
 ------------------------------------------------------
 This module contains bindings to selected types and functions 
 from the
 standard C header <time.h>. Note that this is not automatically
 generated, and may omit some types/functions from the original 
 C header.
 -------------------------------------------------------

 It says "this is not automatically generated". I am seeing it 
 on my
 Ubuntu Linux system. What would cause it to not be generated 
 and what
 would be the solution?
It means that it's manually translated from C to D and not translated automatically using some tool.
Thanks!
Sep 30 2017