-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTP0.c
93 lines (67 loc) · 1.66 KB
/
TP0.c
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
//
// Created by marconcz on 02/04/19.
#include <stdlib.h>
#include <string.h>
#include <zconf.h>
#include <stdio.h>
#include <stdbool.h>
int main(int argc, char *argv[]) {
FILE *archivo;
int caracter;
FILE *salida;
bool entradaEstandar = true;
bool salidaEstandar = true;
int indice = 0;
while(argc >= indice) {
indice++;
if ((strcmp(argv[indice], "-i") == 0)) {
if (argc > indice + 1) {
indice = indice +1;
archivo = fopen(argv[indice], "r");
entradaEstandar = false;
}
}
if ((strcmp(argv[indice], "-d") == 0)) {
indice = indice +1;
if (argc > indice + 1) {
salida = fopen(argv[indice], "w");
salidaEstandar = false;
}
}
}
if(entradaEstandar){
archivo = stdin;
}
if(salidaEstandar){
salida = stdout;
}
/*Pruebas iniciales para leer argumentos
if (argc >= 1) {
if ((strcmp(argv[1], "-i")!=0)){
archivo = stdin;
} else {
printf("-i");
archivo = fopen(argv[2], "r");
}
}
salida = fopen(argv[1],"w");*/
if (archivo == NULL)
{
printf("\nError de apertura del archivo. \n\n");
}
else
{
while((caracter = fgetc(archivo)) != EOF)
{
if(caracter == '\n'){
fputc('\r',salida);
fputc('\n',salida);
}else{
fputc(caracter,salida);
}
}
}
fclose(archivo);
fclose(salida);
return 0;
}