summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2012-06-27 05:09:21 +0200
committerJay Berkenbilt <ejb@ql.org>2012-06-27 05:10:10 +0200
commit736bafbb9ca645fc8662d9d05f5a72a2e6185e75 (patch)
tree2933f3726d5840696fd076960a0b98670cfaa58e /include
parent0802ba275f589520988ea9af6c434af6b78add41 (diff)
downloadqpdf-736bafbb9ca645fc8662d9d05f5a72a2e6185e75.tar.zst
Rename seek functions in QUtil
Diffstat (limited to 'include')
-rw-r--r--include/qpdf/QUtil.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/qpdf/QUtil.hh b/include/qpdf/QUtil.hh
index 8d2c09cf..3d8c863d 100644
--- a/include/qpdf/QUtil.hh
+++ b/include/qpdf/QUtil.hh
@@ -49,9 +49,9 @@ namespace QUtil
// Wrap around off_t versions of fseek and ftell if available
QPDF_DLL
- int fseek_off_t(FILE* stream, qpdf_offset_t offset, int whence);
+ int seek(FILE* stream, qpdf_offset_t offset, int whence);
QPDF_DLL
- qpdf_offset_t ftell_off_t(FILE* stream);
+ qpdf_offset_t tell(FILE* stream);
QPDF_DLL
char* copy_string(std::string const&);