globfree method

void globfree(
  1. glob_t pglob
)

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();
}