stringInit.c
资源名称:ixp425BSP.rar [点击查看]
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:
VxWorks
开发平台:
C/C++
- /* stringLibInit.c - string library initialization */
- /* Copyright 1992 Wind River Systems, Inc. */
- /*
- modification history
- --------------------
- 01a,07sep92,smb written.
- */
- /*
- DESCRIPTION
- This file is used to include the string ANSI C library routines in the
- VxWorks build. The routines are only included when this file is
- included by usrConfig.c.
- NOMANUAL
- */
- #ifndef __INCstringLibInitc
- #define __INCstringLibInitc
- #include "vxWorks.h"
- #include "string.h"
- VOIDFUNCPTR stringFiles[] =
- {
- (VOIDFUNCPTR) memchr,
- (VOIDFUNCPTR) memcmp,
- (VOIDFUNCPTR) memcpy,
- (VOIDFUNCPTR) memset,
- (VOIDFUNCPTR) memmove,
- (VOIDFUNCPTR) strcat,
- (VOIDFUNCPTR) strchr,
- (VOIDFUNCPTR) strcmp,
- (VOIDFUNCPTR) strcoll,
- (VOIDFUNCPTR) strcpy,
- (VOIDFUNCPTR) strcspn,
- (VOIDFUNCPTR) strerror,
- (VOIDFUNCPTR) strlen,
- (VOIDFUNCPTR) strncat,
- (VOIDFUNCPTR) strncmp,
- (VOIDFUNCPTR) strncpy,
- (VOIDFUNCPTR) strpbrk,
- (VOIDFUNCPTR) strrchr,
- (VOIDFUNCPTR) strspn,
- (VOIDFUNCPTR) strstr,
- (VOIDFUNCPTR) strtok,
- (VOIDFUNCPTR) strtok_r,
- (VOIDFUNCPTR) strxfrm
- };
- #endif /* __INCstringLibInitc */