FrontISTR  5.7.0
Large-scale structural analysis program with finit element method
hecd_util.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Copyright (c) 2019 FrontISTR Commons
3  * This software is released under the MIT License, see LICENSE.txt
4  *****************************************************************************/
5 /*
6  hecd_util ver.1.0
7 */
8 
9 #ifndef hecd_utilH
10 #define hecd_utilH
11 
12 #include <stdio.h>
13 #include <string.h>
14 #include <ctype.h>
15 
16 namespace hecd_util {
17 
18 void cleanup_token(char* s);
19 void cleanup_token(char* src, char* dest);
20 void toupper(char* s);
21 void toupper(const char* src, char* dest);
22 void tolower(char* s);
23 void tolower(const char* src, char* dest);
24 void remove_cr(char* s);
25 void ftos(double x, char* s);
26 
27 } // end of namespace hecd_util
28 
29 #endif
hecd_util::toupper
void toupper(char *s)
Definition: hecd_util.cpp:40
hecd_util::cleanup_token
void cleanup_token(char *s)
Definition: hecd_util.cpp:16
hecd_util::remove_cr
void remove_cr(char *s)
Definition: hecd_util.cpp:78
hecd_util::tolower
void tolower(char *s)
Definition: hecd_util.cpp:59
hecd_util::ftos
void ftos(double x, char *s)
Definition: hecd_util.cpp:93
hecd_util
Definition: hecd_util.cpp:11