FrontISTR 5.2.0
Large-scale structural analysis program with finit element method
Loading...
Searching...
No Matches
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
16namespace hecd_util {
17
18void cleanup_token(char* s);
19void cleanup_token(char* src, char* dest);
20void toupper(char* s);
21void toupper(const char* src, char* dest);
22void tolower(char* s);
23void tolower(const char* src, char* dest);
24void remove_cr(char* s);
25void ftos(double x, char* s);
26
27} // end of namespace hecd_util
28
29#endif
void tolower(char *s)
Definition: hecd_util.cpp:56
void toupper(char *s)
Definition: hecd_util.cpp:37
void cleanup_token(char *s)
Definition: hecd_util.cpp:13
void remove_cr(char *s)
Definition: hecd_util.cpp:75
void ftos(double x, char *s)
Definition: hecd_util.cpp:90