Function getName [src]
Prototype
pub fn getName(self: *const inotify_event) ?[:0]const u8
Parameters
self: *const inotify_event
Source
pub fn getName(self: *const inotify_event) ?[:0]const u8 {
if (self.len == 0) return null;
return std.mem.span(@as([*:0]const u8, @ptrCast(self)) + @sizeOf(inotify_event));
}