globfree method
Free memory allocated by glob. (In Dart, this just clears the list).
Implementation
void globfree(glob_t pglob) {
pglob.gl_pathc = 0;
pglob.gl_pathv.clear();
}
Free memory allocated by glob. (In Dart, this just clears the list).
void globfree(glob_t pglob) {
pglob.gl_pathc = 0;
pglob.gl_pathv.clear();
}