Cloned SEACAS for EXODUS library with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

32 lines
1.4 KiB

/*
* Copyright(C) 1999-2022 National Technology & Engineering Solutions
* of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
* NTESS, the U.S. Government retains certain rights in this software.
*
* See packages/seacas/LICENSE for details
*/
#pragma once
#include "apr_symrec.h"
#include "aprepro.h"
#include <string>
namespace SEAMS {
bool arg_check(SEAMS::symrec *symbol, bool is_null);
void conv_string(char *string);
void new_string(const std::string &from, char **to);
void new_string(const char *from, char **to);
void concat_string(const char *from1, const char *from2, char **to);
const char *get_temp_filename();
void math_error(const SEAMS::Aprepro &aprepro, const char *function);
void math_error(const char *function);
void yyerror(const SEAMS::Aprepro &aprepro, const std::string &s);
void undefined_error(const SEAMS::Aprepro &aprepro, const std::string &var);
void redefined_warning(const SEAMS::Aprepro &aprepro, const SEAMS::symrec *var);
void warning(const SEAMS::Aprepro &aprepro, const std::string &var);
void immutable_modify(const SEAMS::Aprepro &aprepro, const SEAMS::symrec *var);
void set_type(const SEAMS::Aprepro &apr, SEAMS::symrec *var, int type);
void cleanup_memory();
bool is_directory(const std::string &filepath);
bool check_valid_var(const char *s);
} // namespace SEAMS