1
0
mirror of https://github.com/deadw00d/AROS.git synced 2025-12-08 14:34:41 +00:00
Files
AROS-v0/compiler/arossupport/rawputchars.c
Matthias Rustler 2dd7a55cbf compiler: detabbed
2021-05-02 14:18:58 +02:00

48 lines
809 B
C

/*
Copyright (C) 1995-2007, The AROS Development Team. All rights reserved.
Desc: Formats a message and makes sure the user will see it.
*/
#include <proto/exec.h>
/*****************************************************************************
NAME */
#include <proto/arossupport.h>
void RawPutChars (
/* SYNOPSIS */
const UBYTE * str,
int len)
/* FUNCTION
Emits len bytes of fmt via RawPutChar()
INPUTS
str - string to print
len - how many bytes of str to print
RESULT
None.
NOTES
EXAMPLE
BUGS
SEE ALSO
INTERNALS
HISTORY
******************************************************************************/
{
while (*str && len --)
RawPutChar (*str ++);
} /* RawPutChars */