aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QUtil.cc
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 /libqpdf/QUtil.cc
parent0802ba275f589520988ea9af6c434af6b78add41 (diff)
downloadqpdf-736bafbb9ca645fc8662d9d05f5a72a2e6185e75.tar.zst
Rename seek functions in QUtil
Diffstat (limited to 'libqpdf/QUtil.cc')
-rw-r--r--libqpdf/QUtil.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libqpdf/QUtil.cc b/libqpdf/QUtil.cc
index 0db61eed..1c7e390f 100644
--- a/libqpdf/QUtil.cc
+++ b/libqpdf/QUtil.cc
@@ -122,7 +122,7 @@ QUtil::fopen_wrapper(std::string const& description, FILE* f)
}
int
-QUtil::fseek_off_t(FILE* stream, qpdf_offset_t offset, int whence)
+QUtil::seek(FILE* stream, qpdf_offset_t offset, int whence)
{
#if HAVE_FSEEKO
return fseeko(stream, (off_t)offset, whence);
@@ -138,7 +138,7 @@ QUtil::fseek_off_t(FILE* stream, qpdf_offset_t offset, int whence)
}
qpdf_offset_t
-QUtil::ftell_off_t(FILE* stream)
+QUtil::tell(FILE* stream)
{
#if HAVE_FSEEKO
return (qpdf_offset_t)ftello(stream);