source: buchla-68k/libsm/strfill.c@ 7258c6a

Last change on this file since 7258c6a was 7258c6a, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Use standard integer types.

  • Property mode set to 100644
File size: 578 bytes
Line 
1/*
2 =============================================================================
3 strfill() -- fill a string with a constant byte and zero terminate it
4 Version 1 -- 1988-08-19 -- D.N. Lynx Crowe
5
6 Where:
7 s = string pointer
8 c = constant byte
9 n = string length (not including the trailing zero)
10
11 Returns a pointer to the string.
12 =============================================================================
13*/
14
15int8_t *strfill(int8_t *s, int8_t c, uint16_t n)
16{
17 register uint16_t i;
18 int8_t *p;
19
20 p = s;
21
22 for (i = n; i--; )
23 *s++ = c;
24
25 *s = '\0';
26 return(p);
27}
28
Note: See TracBrowser for help on using the repository browser.