mirror of https://github.com/Gnucash/gnucash
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@1333 57a11ea4-9604-0410-9ed3-97b8803252fdzzzoldfeatures/xacc-12-patch
parent
d1a8cb322f
commit
8d44a9088f
@ -0,0 +1,16 @@
|
||||
#include "helperfuncs.h"
|
||||
|
||||
FILE *
|
||||
get_fileptr_stdin() {
|
||||
return stdin;
|
||||
}
|
||||
|
||||
FILE *
|
||||
get_fileptr_stdout() {
|
||||
return stdout;
|
||||
}
|
||||
|
||||
FILE *
|
||||
get_fileptr_stderr() {
|
||||
return stderr;
|
||||
}
|
||||
@ -0,0 +1,10 @@
|
||||
#ifndef __HELPERFUNCS_H__
|
||||
#define __HELPERFUNCS_H__
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
FILE *get_fileptr_stdin();
|
||||
FILE *get_fileptr_stdout();
|
||||
FILE *get_fileptr_stderr();
|
||||
|
||||
#endif
|
||||
Loading…
Reference in new issue