1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-11-29 22:48:24 +02:00

Better escape code parsing (thanks to Ryooooooga) (#2514)

This commit is contained in:
Jesse Duffield
2023-03-19 15:41:47 +11:00
committed by GitHub
parent e6274af015
commit b542579db3
90 changed files with 896 additions and 348 deletions

View File

@@ -7,6 +7,12 @@
package unix
import "unsafe"
func ptrace(request int, pid int, addr uintptr, data uintptr) error {
return ptrace1(request, pid, addr, data)
}
func ptracePtr(request int, pid int, addr uintptr, data unsafe.Pointer) error {
return ptrace1Ptr(request, pid, addr, data)
}