github.com/gotranspile/cxgo@v0.3.7/libs/inttypes.go (about)

     1  package libs
     2  
     3  // TODO: https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/inttypes.h.html
     4  
     5  func init() {
     6  	RegisterLibrary("inttypes.h", func(c *Env) *Library {
     7  		return &Library{
     8  			Header: `
     9  #include <` + stdintH + `>
    10  `,
    11  		}
    12  	})
    13  }