diff options
author | Keith Packard <keithp@keithp.com> | 2013-03-24 15:08:31 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-03-24 15:08:31 -0700 |
commit | 2a66aab0b0efb63bf3619ec03abb357823e9cdde (patch) | |
tree | f07111b1c22b581f4c1a2e14674923fd3a873743 /src/core/ao.h | |
parent | a041c04238991124058f8c4839883547a5a04566 (diff) |
altos: Expose ao_put_string function
This works like puts, except it doesn't add a trailing newline.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/core/ao.h')
-rw-r--r-- | src/core/ao.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/ao.h b/src/core/ao.h index adda0b6f..7ff49dd5 100644 --- a/src/core/ao.h +++ b/src/core/ao.h @@ -144,6 +144,9 @@ extern __pdata char ao_cmd_lex_c; extern __pdata enum ao_cmd_status ao_cmd_status; void +ao_put_string(__code char *s); + +void ao_cmd_lex(void); void |