1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/lib/replace
Volker Lendecke c8d9ce3f7c lib: Add "hex_byte()" to replace.h
This is required in quite a few places, and replace.h has things like
ZERO_STRUCT already, so this is not completely outplaced.

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
2021-01-08 20:31:33 +00:00
..
system CI: add samba-no-opath 2020-12-16 09:08:30 +00:00
tests lib: Add macro ARRAY_DEL_ELEMENT() 2020-03-26 14:43:31 +00:00
.checker_innocent
closefrom.c libreplace: Compare a pointer against NULL, not 0 2020-11-04 18:55:39 +00:00
configure build: Move python detection back into waf (instead of in configure and Makefile) 2018-12-14 14:40:19 +01:00
cwrap.c replace: Add socket_wrapper_enabled(). 2014-04-17 14:56:06 +02:00
dlfcn.c
getaddrinfo.c
getaddrinfo.h
getifaddrs.c replace: Use #ifdef instead of #if for config.h definitions 2018-11-28 23:19:21 +01:00
hdr_replace.h
inet_aton.c
inet_ntoa.c
inet_ntop.c
inet_pton.c
Makefile build: Move python detection back into waf (instead of in configure and Makefile) 2018-12-14 14:40:19 +01:00
poll.c
README replace: Add memset_s to replacement functions 2018-12-20 12:16:39 +01:00
replace-test.h
replace-testsuite.h
replace.c Spelling fixes s/convertion/conversion/ 2019-09-01 22:21:26 +00:00
replace.h lib: Add "hex_byte()" to replace.h 2021-01-08 20:31:33 +00:00
snprintf.c lib: replace: snprintf: Whitespace clean up 2019-01-10 06:15:21 +01:00
socket.c
socketpair.c
strptime.c lib:replace: Add FALL_THROUGH statements in strptime.c 2018-03-01 04:37:41 +01:00
timegm.c
win32_replace.h
wscript replace: define BOOL_DEFINED to fix header yp_prot header check on Solaris 2020-11-10 06:53:42 +00:00
xattr.c lib/replace/xattr.c: typo fixes 2019-10-31 00:43:36 +00:00

This subsystem ensures that we can always use a certain core set of 
functions and types, that are either provided by the OS or by replacement 
functions / definitions in this subsystem. The aim is to try to stick 
to POSIX functions in here as much as possible. Convenience functions 
that are available on no platform at all belong in other subsystems
(such as LIBUTIL).

The following functions are guaranteed:

ftruncate
strlcpy
strlcat
mktime
rename
initgroups
memmove
strdup
setlinebuf
vsyslog
timegm
setenv
unsetenv
strndup
strnlen
waitpid
seteuid
setegid
asprintf
snprintf
vasprintf
vsnprintf
opendir
readdir
telldir
seekdir
clock_gettime
closedir
dlopen
dlclose
dlsym
dlerror
chroot
bzero
strerror
errno
mkdtemp
mkstemp (a secure one!)
pread
pwrite
chown
lchown
readline (the library)
inet_ntoa
inet_ntop
inet_pton
inet_aton
strtoll
strtoull
socketpair
strptime
getaddrinfo
freeaddrinfo
getnameinfo
gai_strerror
getifaddrs
freeifaddrs
utime
utimes
dup2
link
readlink
symlink
realpath
poll
setproctitle
memset_s

Types:
bool
socklen_t
uint{8,16,32,64}_t
int{8,16,32,64}_t
intptr_t
sig_atomic_t
blksize_t
blkcnt_t

Constants:
PATH_NAME_MAX
UINT{16,32,64}_MAX
INT32_MAX
RTLD_LAZY
HOST_NAME_MAX
UINT16_MAX
UINT32_MAX
UINT64_MAX
CHAR_BIT

Macros:
va_copy
__FUNCTION__
__FILE__
__LINE__
__LINESTR__
__location__
__STRING
__STRINGSTRING
MIN
MAX
QSORT_CAST
ZERO_STRUCT
ZERO_STRUCTP
ZERO_STRUCTPN
ZERO_ARRAY
ARRAY_SIZE
PTR_DIFF

Headers:
stdint.h
stdbool.h

Optional C keywords:
volatile

Prerequisites:
memset (for bzero)
syslog (for vsyslog)
mktemp (for mkstemp and mkdtemp)