Use Client_find_by_session() instead of a few open-coded loops.
[umurmur.git] / src / pds.h
index e5be19bb0f2d1edb3d0ee0828096ea15e88a9b10..60e1fd6684d08e3c3400ec35fc3e578da4f39840 100644 (file)
--- a/src/pds.h
+++ b/src/pds.h
@@ -1,5 +1,5 @@
-/* Copyright (C) 2009, Martin Johansson <martin@fatbob.nu>
-   Copyright (C) 2005-2009, Thorvald Natvig <thorvald@natvig.com>
+/* Copyright (C) 2009-2014, Martin Johansson <martin@fatbob.nu>
+   Copyright (C) 2005-2014, Thorvald Natvig <thorvald@natvig.com>
 
    All rights reserved.
 
@@ -53,6 +53,8 @@ void Pds_get_string(pds_t *pds, char *str, int maxlen);
 void Pds_add_double(pds_t *pds, double value);
 double Pds_get_double(pds_t *pds);
 int Pds_get_data(pds_t *pds, uint8_t *data, int maxlen);
+uint8_t Pds_next8(pds_t *pds);
+int Pds_skip(pds_t *pds, int offset);
 
 
 #endif