rewind.c 89 B

123456789
  1. #include <grass/btree.h>
  2. int btree_rewind(BTREE * B)
  3. {
  4. B->cur = 0;
  5. return 0;
  6. }