Changeset 41d31d in git for libpolys/resources


Ignore:
Timestamp:
Jan 10, 2012, 4:51:29 PM (12 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'd08f5f0bb3329b8ca19f23b74cb1473686415c3a')
Children:
cf2d9ec33dc72e574457cf0a70a7fc873d5176ff
Parents:
461f404f27ec9987b968899b7005d7a2558ad4b3
git-author:
Martin Lee <martinlee84@web.de>2012-01-10 16:51:29+01:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-02-03 17:54:39+01:00
Message:
chg: added a version of feFopen that takes only two arguments
     and sets the remaining values to default values
Location:
libpolys/resources
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libpolys/resources/feFopen.cc

    r461f40 r41d31d  
    126126}
    127127
     128FILE * feFopen(const char *path, const char *mode)
     129{
     130  return feFopen (path, mode, 0,0,0);
     131}
     132
    128133// Make sure that mode contains binary option
    129134FILE* myfopen(const char *path, const char *mode)
  • libpolys/resources/feFopen.h

    r461f40 r41d31d  
    1010 *****************************************************************/
    1111#ifdef __cplusplus
    12 FILE*feFopen(const char *path, const char *mode, char *where=NULL, BOOLEAN useWerror=FALSE, BOOLEAN path_only=FALSE);
    1312
     13FILE*feFopen(const char *path, const char *mode, char *where, BOOLEAN useWerror=FALSE, BOOLEAN path_only=FALSE);
     14FILE*feFopen(const char *path, const char *mode);
    1415/*
    1516// These are our versions of fopen and fread They are very similar to
Note: See TracChangeset for help on using the changeset viewer.