lib-base.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #ifndef _LIB_BASE_H_
  17. #define _LIB_BASE_H_
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. void *malloc(size_t size);
  22. void *calloc(size_t n, size_t size);
  23. void free(void *ptr);
  24. int memcmp(const void *s1, const void *s2, size_t n);
  25. void *memcpy(void *dest, const void *src, size_t n);
  26. void *memmove(void *dest, const void *src, size_t n);
  27. void *memset(void *s, int c, size_t n);
  28. int putchar(int c);
  29. int snprintf(char *str, size_t size, const char *format, ...);
  30. int sprintf(char *str, const char *format, ...);
  31. char *strchr(const char *s, int c);
  32. int strcmp(const char *s1, const char *s2);
  33. char *strcpy(char *dest, const char *src);
  34. size_t strlen(const char *s);
  35. int strncmp(const char * str1, const char * str2, size_t n);
  36. char *strncpy(char *dest, const char *src, unsigned long n);
  37. #ifdef __cplusplus
  38. }
  39. #endif
  40. #endif