summaryrefslogtreecommitdiff
path: root/sscan.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-16 16:24:47 -0500
committerJeff Carr <[email protected]>2025-08-16 21:50:21 -0500
commit8c7078908b05357e199af4ee85fd2170d6dbdf8d (patch)
treefe22069da51eb6b464f6e98b40a5104b1230d399 /sscan.go
parent466a3c60768e918cc292b6a59caa98262ca2af71 (diff)
more compat for 'fmt' packagev0.22.17
Diffstat (limited to 'sscan.go')
-rw-r--r--sscan.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/sscan.go b/sscan.go
new file mode 100644
index 0000000..9850c39
--- /dev/null
+++ b/sscan.go
@@ -0,0 +1,10 @@
+package log
+
+import "fmt"
+
+// func Sprint(a ...any) string {
+// return realSprint(a...)
+
+func Sscanf(f string, thing string, a ...any) (int, error) {
+ return fmt.Sscanf(f, thing, a...)
+}