summaryrefslogtreecommitdiff
path: root/pgsql.h
diff options
context:
space:
mode:
Diffstat (limited to 'pgsql.h')
-rw-r--r--pgsql.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/pgsql.h b/pgsql.h
index 29f9db9..3738894 100644
--- a/pgsql.h
+++ b/pgsql.h
@@ -98,8 +98,12 @@ int psql_rename( PGconn *conn, const int64_t from_id, const int64_t from_parent_
size_t psql_get_block_size( PGconn *conn, const size_t block_size );
-size_t psql_get_fs_used( PGconn *conn );
+size_t psql_get_fs_blocks_used( PGconn *conn );
-size_t psql_get_fs_free( PGconn *conn );
+size_t psql_get_fs_blocks_free( PGconn *conn );
+
+size_t psql_get_fs_files_used( PGconn *conn );
+
+size_t psql_get_fs_files_free( PGconn *conn );
#endif