cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

string.h (897B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2#ifndef _PPC_BOOT_STRING_H_
      3#define _PPC_BOOT_STRING_H_
      4#include <stddef.h>
      5
      6extern char *strcpy(char *dest, const char *src);
      7extern char *strncpy(char *dest, const char *src, size_t n);
      8extern char *strcat(char *dest, const char *src);
      9extern char *strchr(const char *s, int c);
     10extern char *strrchr(const char *s, int c);
     11extern int strcmp(const char *s1, const char *s2);
     12extern int strncmp(const char *s1, const char *s2, size_t n);
     13extern size_t strlen(const char *s);
     14extern size_t strnlen(const char *s, size_t count);
     15
     16extern void *memset(void *s, int c, size_t n);
     17extern void *memmove(void *dest, const void *src, unsigned long n);
     18extern void *memcpy(void *dest, const void *src, unsigned long n);
     19extern void *memchr(const void *s, int c, size_t n);
     20extern int memcmp(const void *s1, const void *s2, size_t n);
     21
     22#endif	/* _PPC_BOOT_STRING_H_ */