Skip to content

Instantly share code, notes, and snippets.

View stevemk14ebr's full-sized avatar
:octocat:
Reversing Life

Stephen Eckels stevemk14ebr

:octocat:
Reversing Life
View GitHub Profile
@stevemk14ebr
stevemk14ebr / All Go Module Docs
Created January 13, 2025 20:37
go list std | while read -r pkg; do echo "\n$pkg"; go doc -u -all "$pkg" | awk '/^FUNCTIONS/ {p=1;next} p && !/\/\// { print }'; done > ~/go_package_list.txt
This file has been truncated, but you can view the full file.
archive/tar
func blockPadding(offset int64) (n int64)
blockPadding computes the number of bytes needed to pad offset up to the
nearest block edge where 0 <= n < blockSize.
func discard(r io.Reader, n int64) error
discard skips n bytes in r, reporting an error if unable to do so.