summaryrefslogtreecommitdiff
path: root/ext/mysql/libmysql/strfill.c
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2002-05-28 01:22:43 +0000
committerSVN Migration <svn@php.net>2002-05-28 01:22:43 +0000
commitfe9cd86c5dd9af436ff2431b8c4b1800bed6894c (patch)
tree1d2376b2c6d208ff3177bd3c599ab86fe77c10ae /ext/mysql/libmysql/strfill.c
parent43beb1deda6c4d40fab8719478efd0750b0a06da (diff)
downloadphp-git-RELEASE_0_11.tar.gz
This commit was manufactured by cvs2svn to create tag 'RELEASE_0_11'.RELEASE_0_11
Diffstat (limited to 'ext/mysql/libmysql/strfill.c')
-rw-r--r--ext/mysql/libmysql/strfill.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/ext/mysql/libmysql/strfill.c b/ext/mysql/libmysql/strfill.c
deleted file mode 100644
index 2a8496b8b1..0000000000
--- a/ext/mysql/libmysql/strfill.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
-This file is public domain and comes with NO WARRANTY of any kind */
-
-/* File : strfill.c
- Author : Monty
- Updated: 1987.04.16
- Defines: strfill()
-
- strfill(dest, len, fill) makes a string of fill-characters. The result
- string is of length == len. The des+len character is allways set to NULL.
- strfill() returns pointer to dest+len;
-*/
-
-#include <global.h>
-#include "m_string.h"
-
-my_string strfill(my_string s,uint len,pchar fill)
-{
- while (len--) *s++ = fill;
- *(s) = '\0';
- return(s);
-} /* strfill */