CTAOS v3
This commit is contained in:
46
SysCore/include/string.h
Normal file
46
SysCore/include/string.h
Normal file
@ -0,0 +1,46 @@
|
||||
#ifndef _STRING_H
|
||||
#define _STRING_H
|
||||
//****************************************************************************
|
||||
//**
|
||||
//** [string.h]
|
||||
//** - Standard C String routines
|
||||
//**
|
||||
//****************************************************************************
|
||||
//============================================================================
|
||||
// INTERFACE REQUIRED HEADERS
|
||||
//============================================================================
|
||||
|
||||
#include <size_t.h>
|
||||
|
||||
//============================================================================
|
||||
// INTERFACE DEFINITIONS / ENUMERATIONS / SIMPLE TYPEDEFS
|
||||
//============================================================================
|
||||
//============================================================================
|
||||
// INTERFACE CLASS PROTOTYPES / EXTERNAL CLASS REFERENCES
|
||||
//============================================================================
|
||||
//============================================================================
|
||||
// INTERFACE STRUCTURES / UTILITY CLASSES
|
||||
//============================================================================
|
||||
//============================================================================
|
||||
// INTERFACE DATA DECLARATIONS
|
||||
//============================================================================
|
||||
//============================================================================
|
||||
// INTERFACE FUNCTION PROTOTYPES
|
||||
//============================================================================
|
||||
|
||||
extern size_t strlen (const char *str);
|
||||
extern int strcmp(const char *pStr1, const char *pStr2);
|
||||
|
||||
//============================================================================
|
||||
// INTERFACE OBJECT CLASS DEFINITIONS
|
||||
//============================================================================
|
||||
//============================================================================
|
||||
// INTERFACE TRAILING HEADERS
|
||||
//============================================================================
|
||||
//****************************************************************************
|
||||
//**
|
||||
//** END [string.h]
|
||||
//**
|
||||
//****************************************************************************
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user