Ejemplo n.º 1
0
def main(mem: ByteString, value: ByteString, start: int,
         backward: bool) -> int:
    return StdLib.memory_search(mem, value, start, backward)
Ejemplo n.º 2
0
def main(mem: ByteString, value: ByteString, start: int) -> int:
    return StdLib.memory_search(mem, value, start)
Ejemplo n.º 3
0
def main(mem: ByteString, value: ByteString) -> int:
    return StdLib.memory_search(mem, value)
Ejemplo n.º 4
0
def main() -> int:
    return StdLib.memory_search(1, 1, 1, 1)