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

scala.scalanative.posix.regex.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 regex {

  @name("regcomp")
  def compile(regex: Ptr[CInt], str: CString, num: CInt): CInt = extern

  @name("regexec")
  def execute(
      regex: Ptr[CInt],
      str: CString,
      num: CInt,
      ptr: Ptr[CInt],
      num2: CInt
  ): CInt = extern
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy