*** empty log message ***

This commit is contained in:
Dave Goodwin 2004-08-05 14:56:55 +00:00
parent d23e5ce699
commit cf17527579
2 changed files with 16 additions and 2 deletions

View file

@ -6,7 +6,10 @@
// Copyright 2001 California Institute of Technology
//
// $Log$
// Revision 1.11 2004-07-27 14:22:31 dggoodwin
// Revision 1.12 2004-08-05 14:56:57 dggoodwin
// *** empty log message ***
//
// Revision 1.11 2004/07/27 14:22:31 dggoodwin
// *** empty log message ***
//
// Revision 1.10 2004/07/23 00:15:15 dggoodwin
@ -313,7 +316,7 @@ namespace ckr {
string line;
line = "";
char ch;
char ch = ' ';
while (1 > 0) {
f.get(ch);
if (!f || f.eof()) break;

11
Cantera/src/funcs.h Normal file
View file

@ -0,0 +1,11 @@
#ifndef CT_FUNCS_H
#define CT_FUNCS_H
#include "ct_defs.h"
namespace Cantera {
doublereal linearInterp(doublereal x, const vector_fp& xpts,
const vector_fp& fpts);
}
#endif