summaryrefslogtreecommitdiff
path: root/src/ctinput.cc
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2015-01-27 10:04:21 -0500
committerAdrian Thurston <thurston@complang.org>2015-01-27 10:04:21 -0500
commit680cdd650f327b28129f23bf027ca5fa79b44ae3 (patch)
treeaed240b12154d39e989907de17957de7b48569ed /src/ctinput.cc
parentd97898e259de2165599818287132ba1ee80390a2 (diff)
downloadcolm-680cdd650f327b28129f23bf027ca5fa79b44ae3.tar.gz
function name cleanup
Diffstat (limited to 'src/ctinput.cc')
-rw-r--r--src/ctinput.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ctinput.cc b/src/ctinput.cc
index 4a9c92ad..5319002d 100644
--- a/src/ctinput.cc
+++ b/src/ctinput.cc
@@ -37,7 +37,7 @@ extern StreamFuncs replFuncs;
* Pattern
*/
-StreamImpl *newSourceStreamPat( const char *name, Pattern *pattern )
+StreamImpl *colm_impl_new_pat( const char *name, Pattern *pattern )
{
StreamImpl *ss = (StreamImpl*)malloc(sizeof(StreamImpl));
memset( ss, 0, sizeof(StreamImpl) );
@@ -235,7 +235,7 @@ StreamFuncs patternFuncs =
* Constructor
*/
-StreamImpl *newSourceStreamCons( const char *name, Constructor *constructor )
+StreamImpl *colm_impl_new_cons( const char *name, Constructor *constructor )
{
StreamImpl *ss = (StreamImpl*)malloc(sizeof(StreamImpl));
memset( ss, 0, sizeof(StreamImpl) );