File: string.h

package info (click to toggle)
retroarch 1.3.6%2Bdfsg1-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 26,496 kB
  • ctags: 41,865
  • sloc: ansic: 250,395; cpp: 12,996; makefile: 3,500; objc: 3,266; xml: 2,141; python: 1,670; sh: 1,522; java: 798; asm: 542; perl: 393
file content (10 lines) | stat: -rw-r--r-- 200 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
#ifndef __LIBRETRO_SDK_CRT_STRING_H_
#define __LIBRETRO_SDK_CRT_STRING_H_

#include <stdio.h>

void *memcpy(void *dst, const void *src, size_t len);

void *memset(void *b, int c, size_t len);

#endif