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
|
#ifndef _PSP2_PAF_H_
#define _PSP2_PAF_H_
#include <psp2/types.h>
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
void sce_paf_private_free(void *ptr);
void *sce_paf_private_malloc(size_t size);
void *sce_paf_private_memclr(void *ptr, size_t num); //!< Set memory block to 0
void *sce_paf_private_memchr(const void *ptr, int value, size_t num);
int sce_paf_private_memcmp(const void *ptr1, const void *ptr2, size_t num);
int sce_paf_private_memcmp2(const void *ptr1, const void *ptr2, size_t num);
void *sce_paf_private_memcpy(void *destination, const void *source, size_t num);
void *sce_paf_private_memcpy2(void *destination, const void *source, size_t num);
void *sce_paf_private_memmove(void *destination, const void *source, size_t num);
void *sce_paf_private_memmove2(void *destination, const void *source, size_t num);
void *sce_paf_private_memset(void *ptr, int value, size_t num);
int sce_paf_private_snprintf(char *s, size_t n, const char *format, ...);
int sce_paf_private_strcasecmp(const char *str1, const char *str2);
char *sce_paf_private_strchr(const char *str, int character);
int sce_paf_private_strcmp(const char *str1, const char *str2);
size_t sce_paf_private_strlen(const char *str);
int sce_paf_private_strncasecmp(const char *str1, const char *str2, size_t num);
int sce_paf_private_strncmp(const char *str1, const char *str2, size_t num);
char *sce_paf_private_strncpy(char *destination, const char *source, size_t num);
char *sce_paf_private_strrchr(const char *str, int character);
#ifdef __cplusplus
}
#endif
#endif /* _PSP2_PAF_H_ */
|