diff options
author | Joe <rbo@gmx.us> | 2024-01-04 20:20:20 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-01-04 20:20:20 +0100 |
commit | 6fb701c81ac549ef3e7f0f288456a8eb8103c155 (patch) | |
tree | fbe56b5000982a7e1c43d57c29c6035c7fa8bc9d /c_hardflip.go | |
parent | mixed is good (diff) | |
download | hardflip-6fb701c81ac549ef3e7f0f288456a8eb8103c155.tar.gz hardflip-6fb701c81ac549ef3e7f0f288456a8eb8103c155.tar.bz2 hardflip-6fb701c81ac549ef3e7f0f288456a8eb8103c155.tar.xz hardflip-6fb701c81ac549ef3e7f0f288456a8eb8103c155.tar.zst hardflip-6fb701c81ac549ef3e7f0f288456a8eb8103c155.zip |
this is going forward
Diffstat (limited to '')
-rw-r--r-- | c_hardflip.go | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/c_hardflip.go b/c_hardflip.go index 6e33d98..9451056 100644 --- a/c_hardflip.go +++ b/c_hardflip.go @@ -43,7 +43,7 @@ * POSSIBILITY OF SUCH DAMAGE. * * hardflip: src/c_hardflip.go - * Tue Dec 26 14:40:37 2023 + * Thu Jan 04 15:37:01 2024 * Joe * * the main @@ -69,6 +69,15 @@ type HardData struct { ptr HardPtr } +func c_reset_ptr(data *HardData) { + if data.ptr = data.ldirs.head.lhost.head; data.ptr != nil { + data.ui.line = 1 + return + } + data.ptr = data.ldirs.head.next + data.ui.line = 1 +} + func main() { data_dir := c_get_data_dir() opts := HardOpts{true, true, false} @@ -81,6 +90,7 @@ func main() { data_dir, nil, } + c_reset_ptr(&data) // for ptr = ldirs.head; ptr != nil ; ptr = ptr.next { // spaces := "" |