Changelog entry for 0.1.1-1.
[invirt/packages/python-afs.git] / afs / _fs.pyx
1 from afs._util cimport *
2 from afs._util import pyafs_error
3
4 def whichcell(char* path):
5     """Determine which AFS cell a particular path is in."""
6     cdef char cell[MAXCELLCHARS]
7
8     pioctl_read(path, VIOC_FILE_CELL_NAME, cell, sizeof(cell), 1)
9     return cell