aboutsummaryrefslogtreecommitdiff
path: root/core/text/table/utility.odin
blob: 675fa6b102c0100740294e7fb063abe52b63fbd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#+build !freestanding
#+build !js
package text_table

import "core:io"
import "core:os"
import "core:strings"

stdio_writer :: proc() -> io.Writer {
	return os.to_stream(os.stdout)
}

strings_builder_writer :: proc(b: ^strings.Builder) -> io.Writer {
	return strings.to_writer(b)
}