All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.scalanative.posix.utime.scala Maven / Gradle / Ivy

There is a newer version: 0.5.5
Show newest version
package scala.scalanative
package posix

import scalanative.unsafe._

@extern
object utime {
  type utimbuf = CStruct2[
    time.time_t, // actime
    time.time_t // modtime
  ]

  def utime(path: CString, times: Ptr[utimbuf]): CInt = extern
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy