From fd3f2c72fbfae157caa37a9053ed1564bd657f68 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Sat, 15 Oct 2016 19:12:55 -0400 Subject: [PATCH] [clib] Remove ctbdry.h which declared only undefined functions --- include/cantera/clib/ctbdry.h | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 include/cantera/clib/ctbdry.h diff --git a/include/cantera/clib/ctbdry.h b/include/cantera/clib/ctbdry.h deleted file mode 100644 index 072abe25a..000000000 --- a/include/cantera/clib/ctbdry.h +++ /dev/null @@ -1,32 +0,0 @@ -/** - * @file ctbdry.h - */ - -// This file is part of Cantera. See License.txt in the top-level directory or -// at http://www.cantera.org/license.txt for license and copyright information. - -#ifndef CTC_BDRY_H -#define CTC_BDRY_H - -#include "clib_defs.h" - -#ifdef __cplusplus -extern "C" { -#endif - - CANTERA_CAPI int bndry_new(int itype); - CANTERA_CAPI int bndry_del(int i); - CANTERA_CAPI double bndry_temperature(int i); - CANTERA_CAPI int bndry_settemperature(int i, double t); - CANTERA_CAPI double bndry_spreadrate(int i); - CANTERA_CAPI int bndry_setSpreadRate(int i, double v); - CANTERA_CAPI int bndry_setmdot(int i, double mdot); - CANTERA_CAPI double bndry_mdot(int i); - CANTERA_CAPI int bndry_setxin(int i, double* xin); - CANTERA_CAPI int bndry_setxinbyname(int i, char* xin); - -#ifdef __cplusplus -} -#endif - -#endif