APBS  1.4.1
vstring.h
Go to the documentation of this file.
1 
78 #ifndef _VSTRING_H_
79 #define _VSTRING_H_
80 
81 #include "apbscfg.h"
82 
83 #include "maloc/maloc.h"
84 
85 #include "generic/vhal.h"
86 
99 VEXTERNC int Vstring_strcasecmp(const char *s1, const char *s2);
100 
107 VEXTERNC int Vstring_isdigit(const char *tok);
108 
114 VEXTERNC char* Vstring_wrappedtext(
115  const char* str,
116  int right_margin,
117  int left_padding
118  );
119 
120 #endif /* ifndef _VSTRING_H_ */
VEXTERNC int Vstring_strcasecmp(const char *s1, const char *s2)
Case-insensitive string comparison (BSD standard)
Definition: vstring.c:66
VEXTERNC int Vstring_isdigit(const char *tok)
A modified sscanf that examines the complete string.
Definition: vstring.c:130
Contains generic macro definitions for APBS.
char * Vstring_wrappedtext(const char *str, int right_margin, int left_padding)
Definition: vstring.c:155