Overview
Comment: | fix typo |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a38de374f1cff1cc4531c1b6d0c227aa |
User & Date: | lexi on 2019-07-19 06:06:01 |
Other Links: | manifest | tags |
Context
2019-07-19
| ||
06:37 | fix dumb bugs check-in: e3d4aa2fb2 user: lexi tags: trunk | |
06:06 | fix typo check-in: a38de374f1 user: lexi tags: trunk | |
06:00 | add ord.c check-in: 72068307da user: lexi tags: trunk | |
Changes
Modified ord.c from [478119c506] to [aa1f140ed9].
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 |
# define plus "\x1b[94m+\x1b[m" # define par(s) "<\x1b[4m" s "\x1b[24m>" # define lit(l) "\x1b[3m" l "\x1b[23m" # define box(s) "\x1b[94m[\x1b[93m" s "\x1b[94m]\x1b[m" const pstr forms[] = { p(box(box("options") " " par("in:spec")) " " par("value:int") plus " " box(lit("to") " " box(par("out:spec")))), p(box(box("options") par("in:spec")) " " box(lit("to") " " box(par("out:spec"))) " " lit("--") " " par("value:int") plus), }, specs[] = { p(box(lit("bin") OR lit("tern") OR lit("oct") OR lit("dec") OR lit("hex") OR lit("base") " " box("0-9") plus OR "asc")), }, ints[] = { p("default base: \x1b[94m.+\x1b[m"), |
| |
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 |
# define plus "\x1b[94m+\x1b[m"
# define par(s) "<\x1b[4m" s "\x1b[24m>"
# define lit(l) "\x1b[3m" l "\x1b[23m"
# define box(s) "\x1b[94m[\x1b[93m" s "\x1b[94m]\x1b[m"
const pstr forms[] = {
p(box(box("options") " " par("in:spec")) " " par("value:int") plus " "
box(lit("to") " " box(par("out:spec")))),
p(box(box("options") " " par("in:spec")) " " box(lit("to") " " box(par("out:spec")))
" " lit("--") " " par("value:int") plus),
}, specs[] = {
p(box(lit("bin") OR lit("tern") OR lit("oct")
OR lit("dec") OR lit("hex") OR
lit("base") " " box("0-9") plus OR "asc")),
}, ints[] = {
p("default base: \x1b[94m.+\x1b[m"),
|