This repository has been archived by the owner on Jan 3, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hochimin.h
105 lines (83 loc) · 2.21 KB
/
hochimin.h
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
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
Name: Proyecto 2
Copyright: 2005
Author: Gustavo Bazan & Armando bracho
Date: //
Description:
*/
//Librerias
#include <stdio.h>
#include <conio.h>
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
//Declaracion de constantes
#define CANT 100
#define N 20
//contadores
int mg=0,ob=0,ca=0,mi=0,gi=0,pe=0,ne=0,tra=0,od=0,rx=0;
//Declaracion de estructuras
// Formato de fecha
typedef struct{
int dia;
int mes;
int ano;
}fecha;
fecha hoy_d;
typedef struct{
int dia;
int turno;
int ano;
}fecha2;
fecha2 hoy;
//Declaracion de prototipos
//VARIOS
void tecla(); /*Pausa*/
int compararcadenas(char *, char *);/*Compara si 2 cadenas son iguales*/
void leerchar(char *);/*Valida un entero*/
int leernum();/*valida una cadena*/
int menu(); /*menu*/
int confirmar();
int menu(); /*menu*/
/*************************************FUNCIONES DE TIPOS*********************************/
void leerchar(char *resultado){
fflush(stdin);
do { gets(resultado);
} while (strlen(resultado)==0);
return;
}
int leernum(){
char buffer[15];
fflush(stdin);
do { gets(buffer);
} while (strlen(buffer)==0);
return atoi(buffer);
}
int compararcadenas(char *cad1, char *cad2){
/*compara cadenas caracter a caracter con tolower*/
int i;
int resultado;
resultado=0;
if (strlen(cad1)!=strlen(cad2)) resultado=-1;
for (i=0;(unsigned)i<(unsigned)strlen(cad1) && resultado==0;i++) {
if (tolower(cad1[i])!=tolower(cad2[i])) resultado=-1;
}
return resultado;/*devuelve 0 si son iguales, -1 si son distintos*/
}
/*****************************************VARIOS*******************************************/
void tecla(){
printf("\n\n\tPresione cualquier tecla para continuar el programa...\n\a");
getch();
system("cls");
return;
}
int confirmar(){
char a;
do {
printf("\n\n\t¨Est s seguro \"s\"/\"n\"\?");
a=tolower(getch());
} while (a!='s' && a!='n');
if (a=='s') return 1;
else return 0;
}
/******************************************************************************/