diff options
author | Keith Packard <keithp@keithp.com> | 2013-03-10 21:05:34 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-05-07 20:07:08 -0700 |
commit | 6dea353e732b6e19586c844796bc3bb848cc92f8 (patch) | |
tree | f31c854ea9d359772dd3997554328b2b139a288e /src/core/ao.h | |
parent | 1629acba4a63baae2c687ed56a17d02faf45f5e5 (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 977e10b8..548e8738 100644 --- a/src/core/ao.h +++ b/src/core/ao.h @@ -145,6 +145,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 |