Advertisement
LucaVinci110898

PathLinux/es11_main.c

Mar 8th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.70 KB | None | 0 0
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. #include "es11.h"
  4.  
  5. /*
  6.  * Compilare con il comando `gcc -std=gnu89 -Wall -pedantic -o es11 es11.c es11_main.c`.
  7.  */
  8.  
  9. int main() {
  10.   int res;
  11.   char percorso1[] = "/./.home././";
  12.   char percorso5[] = "/ciao/vgf/..";
  13.   char destinazione[500] = {0};
  14.  
  15.   /* Inserire qui il vostro main di prova. */
  16.  
  17.   printf("%d\n", cerca_stringa("ciaiao", "iao", 0));
  18.  
  19.   rimuovi_current_directory(percorso1);
  20.   printf("%s\n", percorso1);
  21.  
  22.   res = rimuovi_parent_directory(percorso5);
  23.   printf("%d, %s\n", res, percorso5);
  24.  
  25.   res = percorso_assoluto("/../home/tom", "ben/../test/./work", destinazione);
  26.   printf("%d, %s\n", res, destinazione);
  27.  
  28.   return EXIT_SUCCESS;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement