Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
15 lines (12 loc) · 474 Bytes

File metadata and controls

15 lines (12 loc) · 474 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef STRING_H_INCLUDED
#define STRING_H_INCLUDED
#include "stddef.h"
/** Provides the standard memcmp functionality. */
int memcmp(const void *s1, const void *s2, size_t n);
/** Provides the standard memcpy functionality. */
void *memcpy(void *s1, const void *s2, size_t n);
/** Zeroes the content of the specified memory block. */
void *memzero(void *s, size_t n);
/** Provides the standard strcmp functionality. */
int strcmp(const char *s1, const char *s2);
#endif
Morty Proxy This is a proxified and sanitized view of the page, visit original site.