mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
10 lines
199 B
C
10 lines
199 B
C
|
#ifndef _SAMBA_CHARSET_COMPAT_H_
|
||
|
#define _SAMBA_CHARSET_COMPAT_H_
|
||
|
|
||
|
#include <string.h>
|
||
|
|
||
|
#define strchr_m(h, n) strchr(h, n)
|
||
|
#define strstr_m(h, n) strstr(h, n)
|
||
|
|
||
|
#endif /* _SAMBA_CHARSET_COMPAT_H_ */
|