Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
fs_clib.h
Package: STM32-uCOS-II_UAV.rar [view]
Upload User: yj_qqy
Upload Date: 2017-01-28
Package Size: 2911k
Code Size: 2k
Category:
uCOS
Development Platform:
C/C++
- /*
- **********************************************************************
- * Micrium, Inc.
- * 949 Crestview Circle
- * Weston, FL 33327-1848
- *
- * uC/FS
- *
- * (c) Copyright 2001 - 2003, Micrium, Inc.
- * All rights reserved.
- *
- ***********************************************************************
- ----------------------------------------------------------------------
- File : fs_clib.h
- Purpose : Header file for the file system's CLIB functions.
- ----------------------------------------------------------------------
- Known problems or limitations with current version
- ----------------------------------------------------------------------
- None.
- ---------------------------END-OF-HEADER------------------------------
- */
- #ifndef _FS_CLIB_H_
- #define _FS_CLIB_H_
- /*********************************************************************
- *
- * #define constants
- *
- **********************************************************************
- */
- /*********************************************************************
- *
- * Global function prototypes
- *
- **********************************************************************
- */
- FS_FARCHARPTR FS__CLIB_strchr(const char *s, int c);
- FS_size_t FS__CLIB_strlen(const char *s);
- int FS__CLIB_strncmp(const char *s1, const char *s2, FS_size_t n);
- int FS__CLIB_strcmp(const char *s1, const char *s2);
- int FS__CLIB_atoi(const char *s);
- void *FS__CLIB_memset(void *s, int c, FS_size_t n);
- void *FS__CLIB_memcpy(void *s1, const void *s2, FS_size_t n);
- char *FS__CLIB_strncpy(char *s1, const char *s2, FS_size_t n);
- int FS__CLIB_toupper(int c);
- #endif /* _FS_CLIB_H_ */