summaryrefslogtreecommitdiff
path: root/strings/strcend.c
diff options
context:
space:
mode:
Diffstat (limited to 'strings/strcend.c')
-rw-r--r--strings/strcend.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/strings/strcend.c b/strings/strcend.c
index 35f103fc40a..55b05bfcefa 100644
--- a/strings/strcend.c
+++ b/strings/strcend.c
@@ -26,6 +26,15 @@
SUCH DAMAGE.
*/
+/* File : strcend.c
+ Author : Michael Widenius: ifdef MC68000
+ Updated: 20 April 1984
+ Defines: strcend()
+
+ strcend(s, c) returns a pointer to the first place in s where c
+ occurs, or a pointer to the end-null of s if c does not occur in s.
+*/
+
#include "strings_def.h"
char *strcend(register const char *s, register pchar c)