Former-commit-id:a02aeb236c
[formerly9f19e3f712
] [formerly06a8b51d6d
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]] Former-commit-id:06a8b51d6d
Former-commit-id:3360eb6c5f
33 lines
923 B
C
33 lines
923 B
C
/******************************************************************************
|
|
*
|
|
* Header: strutil.h
|
|
*
|
|
* Description: This header contains prototypes for the strutil module
|
|
*
|
|
* Created by: Heather Friedeman
|
|
*
|
|
* History:
|
|
*
|
|
* Bryon Lawrence 09/28/2004 Moved the chgupper and the chglower
|
|
* routines to the GeneralUtil
|
|
* library.
|
|
*****************************************************************************/
|
|
|
|
/* $Id: strutil.h,v 1.2 2004/12/10 20:36:16 lawrence Exp $ */
|
|
|
|
/* check if string is blank */
|
|
|
|
extern int is_blank(char *str);
|
|
|
|
/* remove non space characters from a string */
|
|
|
|
extern void strip_leading_blanks(char *str);
|
|
extern void strip_trailing_blanks(char *str);
|
|
extern void strip_leading_trailing_blanks(char *str);
|
|
|
|
/* convert a string into a float value */
|
|
|
|
extern int getFloat(char *,float *);
|
|
|
|
|
|
|