ChrisOS Research ProjectOperating systems · language systems · graphics · machine emulation
DOCUMENTATION ARCHIVEMAIN BRANCH
ChrisOS/Referência de fonte: LIB/STRING.H

Referência de fonte: LIB/STRING.H

Registro determinístico da fonte. O conteúdo completo do arquivo é reproduzido abaixo; esta página não substitui a interpretação arquitetural dos capítulos autorais.

Identidade do arquivo

Campo Valor
Path LIB/STRING.H
Lines 24
Bytes 659
SHA-256 2230b986c69e8ce4062370c65a9fd68bf92390a7b142ee30783b664eea4016a1
ChrisOS revision da3df29cb397932c43d32373871fb9380e688ade

Dependências sintáticas detectadas

Linha Include
3 STDDEF.H

Símbolos detectados

Linha Símbolo
— Nenhuma definição de função no formato C detectada pelo scanner.

Fonte completa

O bloco seguinte é o arquivo textual integral na revisão indicada. Não há elisão, abreviação ou paráfrase.

#ifndef STRING_H
#define STRING_H
#include "STDDEF.H"

int strlen(char *s);
int strcmp(char *a, char *b);
char *strcpy(char *d, char *s);
void memcpy(char *d, char *s, int n);
void memmove(char *d, char *s, int n);
int strncmp(char *a, char *b, int n);
void memset(char *d, int c, int n);
int strcasecmp(char *a, char *b);
int strncasecmp(char *a, char *b, int n);
char *strdup(char *s);
char *strstr(char *h, char *n);
char *strncpy(char *d, char *s, int n);
char *strerror(int err);
char *strchr(char *s, int c);
char *strrchr(char *s, int c);
int memcmp(char *a, char *b, int n);
char *memchr(char *s, int c, int n);
char *strcat(char *d, char *s);
#endif

Papel deste registro

O atlas garante rastreabilidade arquivo-a-arquivo. Responsabilidade, invariantes, ownership, concorrência, segurança, desempenho e interação entre subsistemas pertencem aos capítulos autorais e devem citar este arquivo quando aplicável.

Registro do documento ID: source-2230b986c69e8ce4 Reviewed source: da3df29cb397 Class: generated-source-reference