~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to strings/strfill.c

  • Committer: Brian Aker
  • Date: 2008-07-14 04:46:28 UTC
  • Revision ID: brian@tangent.org-20080714044628-mk3nt2rbaeqt8oe9
Removed oddball types in my_global.h

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#include <my_global.h>
27
27
#include "m_string.h"
28
28
 
29
 
char * strfill(char *s, size_t len, pchar fill)
 
29
char * strfill(char *s, size_t len, char fill)
30
30
{
31
31
  while (len--) *s++ = fill;
32
32
  *(s) = '\0';