diff options
author | louie <lshprung@yahoo.com> | 2020-06-16 21:23:02 -0700 |
---|---|---|
committer | louie <lshprung@yahoo.com> | 2020-06-16 21:23:02 -0700 |
commit | 96d5b7878f70b93651106b19768edfba7ba3dafd (patch) | |
tree | 4891b8f14b1595b269a70bbf9fa019c765f5449c /entry.c | |
parent | bad94ac2786a4e765707b5766ab3999e604e9d0b (diff) |
Printing group column
Diffstat (limited to 'entry.c')
-rw-r--r-- | entry.c | 88 |
1 files changed, 88 insertions, 0 deletions
@@ -0,0 +1,88 @@ +#include <assert.h> +#include <dirent.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> +#include "entry.h" +#include "group.h" +#define BUF_LEN 1024 + +typedef struct entry{ + char name[BUF_LEN]; + char path[BUF_LEN]; + struct entry *next; +} ENTRY; + +ENTRY *create_entry(char *new_path, char *new_group); +ENTRY *entry_add_last(ENTRY *tail, ENTRY *add); +ENTRY **get_entries(ENTRY *head, int count); +char *get_ename(ENTRY *e); +char *get_epath(ENTRY *e); + +ENTRY *create_entry(char *new_path, char *new_group){ + ENTRY *new; + char full_path[BUF_LEN] = ""; + + if(new_group != NULL) strcat(full_path, new_group); + strcat(full_path, new_path); + + //check if file exists + if(access(full_path, F_OK) == -1){ + printf("Error: Invalid File Name \"%s\"\n", full_path); + return NULL; + } + + new = malloc(sizeof(ENTRY)); + + strcpy(new->name, new_path); + strcpy(new->path, full_path); + new->next = NULL; + + return new; +} + +ENTRY *entry_add_last(ENTRY *tail, ENTRY *add){ + assert(add != NULL); + + if(tail == NULL) tail = add; + else{ + tail->next = add; + tail = add; + } + + return tail; +} + +ENTRY **get_entries(ENTRY *head, int count){ + ENTRY **arr = malloc(sizeof(ENTRY *) * count); + ENTRY *trav = head; + int i; + + for(i = 0; i < count; i++){ + arr[i] = trav; + trav = trav->next; + } + + return arr; +} + +char *get_ename(ENTRY *e){ + assert(e != NULL); + return e->name; +} +char *get_epath(ENTRY *e){ + assert(e != NULL); + return e->name; + return e->path; +} + +void entry_debug(ENTRY *trav){ + + while(trav != NULL){ + printf("%s, \n", trav->name); + trav = trav->next; + } + + return; +} |