]> git.mxchange.org Git - core.git/blobdiff - inc/classes/interfaces/io/pointer/io/class_InputOutputPointer.php
Continued with file-based hash:
[core.git] / inc / classes / interfaces / io / pointer / io / class_InputOutputPointer.php
index 6c2de09c78a1a8e49c6156b3d563e8ceca0036b8..529dbe6f1ad36a22677511d7fbbdc2b7ba6fecc1 100644 (file)
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 interface InputOutputPointer extends InputPointer, OutputPointer {
+       /**
+        * Rewinds to the beginning of the file
+        *
+        * @return      void
+        */
+       function rewind ();
+
+       /**
+        * Seeks to given position
+        *
+        * @param       $seekPosition   Seek position in file
+        * @param       $whence                 "Seek mode" (see http://de.php.net/fseek)
+        * @return      void
+        */
+       function seek ($seekPosition, $whence = SEEK_SET);
 }
 
 // [EOF]