summaryrefslogtreecommitdiff
path: root/sys/modules/lua/string.h
blob: f54ade9931635a3e22653d5316f9b5313d9d40ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*	$NetBSD */

/*
 * This file is a placeholder only, to allow Lua to be compiled from
 * unchanged sources.
 */

#include <sys/param.h>

#ifndef _LUA_INCLUDE_STRING_
#define _LUA_INCLUDE_STRING_

#define strcoll strcmp

char *strncat(char *dst, const char *src, size_t n);
size_t strspn(const char *s, const char *charset);
size_t strcspn(const char *s, const char *charset);
char *strpbrk(const char *s, const char *charset);

#endif