Revert "New API to retrieve disk stats in Linux"

This reverts commit 9e62440b31.
This commit is contained in:
Michael Catanzaro
2020-11-06 09:52:01 -06:00
parent 30bf8d0418
commit 7e214414bf
18 changed files with 3 additions and 272 deletions

View File

@@ -57,24 +57,6 @@ skip_token (const char *p)
}
int
check_alphanumeric_word (const char *p)
{
int test = 0;
p = next_token(p);
while (*p && !g_ascii_isspace(*p)) {
if(g_ascii_isalpha(*p)){
test = 0;
}else if(g_ascii_isdigit(*p)){
test = 1;
}
p++;
};
p = next_token(p);
return test;
}
/*
* Read functions
*/