more pointer style consistency

This commit is contained in:
nhmall
2024-02-20 13:04:32 -05:00
parent d5f2b681af
commit b4f578495c
10 changed files with 43 additions and 43 deletions

View File

@@ -102,7 +102,7 @@ switchar(void)
}
long
freediskspace(char* path)
freediskspace(char *path)
{
char tmppath[4];
DWORD SectorsPerCluster = 0;
@@ -123,7 +123,7 @@ freediskspace(char* path)
* Functions to get filenames using wildcards
*/
int
findfirst(char* path)
findfirst(char *path)
{
if (ffhandle) {
FindClose(ffhandle);
@@ -146,7 +146,7 @@ foundfile_buffer(void)
}
long
filesize(char* file)
filesize(char *file)
{
if (findfirst(file)) {
return ((long) ffd.nFileSizeLow);
@@ -158,7 +158,7 @@ filesize(char* file)
* Chdrive() changes the default drive.
*/
void
chdrive(char* str)
chdrive(char *str)
{
char *ptr;
char drive;