1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/*********************************************************/
/* ptycon: a pty-console bridge */
/* Copyright (C) 2016 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PTYCON. */
/*********************************************************/
#include <ntapi/ntapi.h>
extern const ntapi_vtbl * ptyc_ntapi;
void * ptyc_memcpy(void * dst, const void * src, size_t n)
{
return ptyc_ntapi->tt_generic_memcpy(dst,src,n);
}
void * ptyc_memset(void * ch, int c, size_t n)
{
return ptyc_ntapi->tt_generic_memset(ch,c,n);
}
char * ptyc_strcpy(char * dst, const char * src)
{
return ptyc_ntapi->tt_generic_memcpy(
dst,src,
ptyc_ntapi->tt_string_null_offset_multibyte(src));
}
size_t ptyc_strlen(const char * ch)
{
return ptyc_ntapi->tt_string_null_offset_multibyte(ch);
}
int ptyc_strcmp(const char * a, const char * b)
{
return ptyc_ntapi->tt_strcmp_multibyte(a,b);
}
int ptyc_strncmp(const char * a, const char * b, size_t n)
{
return ptyc_ntapi->tt_strncmp_multibyte(a,b,n);
}
char * ptyc_strchr(const char * ch, int c)
{
for (; *ch; ch++)
if (*ch == c)
return (char *)ch;
return 0;
}
char * ptyc_strrchr(const char * ch, int c)
{
const char * base;
base = ch;
ch += ptyc_ntapi->tt_string_null_offset_multibyte(ch);
for (; ch >= base; ch--)
if (*ch == c)
return (char *)ch;
return 0;
}
#ifdef PTYC_BUILD
int __stdcall ptycon_entry_point(void * hinstance, uint32_t reason, void * reserved)
{
(void)hinstance;
(void)reason;
(void)reserved;
return 1;
}
#endif
|