awips2/nativeLib/rary.ohd.whfs/inc/general/strutil.h
root 8e80217e59 Initial revision of AWIPS2 11.9.0-7p5
Former-commit-id: a02aeb236c [formerly 9f19e3f712] [formerly 06a8b51d6d [formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]
Former-commit-id: 06a8b51d6d
Former-commit-id: 3360eb6c5f
2012-01-06 08:55:05 -06:00

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 *);