-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfsPath.h
More file actions
47 lines (35 loc) · 1.16 KB
/
fsPath.h
File metadata and controls
47 lines (35 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/**************************************************************
* Class:: CSC-415-02 Summer 2025
* Name::Phillip Davis Igor Tello Jared Aung Preet Vithani
* Student IDs:: 923980431, 923043807, 922772159, 923575806
* GitHub-Name::R3plug
* Group-Name::Team Kentucky Kernels
* Project:: Basic File System
*
* File:: fsPath.h
*
* Description:: This file is a header file for
* functions to manage the stack, clean, clean paths and
* convert the stack to a string representation of the path.
*
**************************************************************/
#ifndef FSPATH_H
#define FSPATH_H
#include "dirLow.h"
#include <stddef.h>
// Additional helper functions for the below functions
void freePPI(ppInfo *ppi);
int entryIsDir(ppInfo *ppi);
// We need to push the path component to the stack
void push(const char *value);
// We need to Pop the top component off the stack
void pop(void);
// we need to normalize the path string
void pathCleaner(char *path);
// We need to build a string from the stack
char *toString(void);
// We need to get the CWD string
char *getCWDStr(void);
// Lets free our stack memory and the CWD buffer
void freeSTRCWD(void);
#endif // FSPATH_H