-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprojeto3.h
More file actions
23 lines (19 loc) · 1.27 KB
/
projeto3.h
File metadata and controls
23 lines (19 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*============================================================================*/
/* CSF13 - 2020-2 - PROJETO 3 */
/*----------------------------------------------------------------------------*/
/* Bogdan T. Nassu - btnassu@utfpr.edu.br */
/* Leyza E. B. Dorini - leyza@utfpr.edu.br */
/*============================================================================*/
/** Funções pedidas para o 3o projeto da disciplina Fundamentos de Programação
* 1, 2o semestre de 2020, prof. Bogdan T. Nassu e Leyza E. B. Dorini,
* Universidade Tecnológica Federal do Paraná. */
/*============================================================================*/
#ifndef __PROJETO3_H
#define __PROJETO3_H
/*============================================================================*/
unsigned char calculaParidade (unsigned char b);
float calculaValorDevido (float peso, float custo_fixo, float preco_kg, float largura_faixa, float desconto_faixa, float desconto_max);
unsigned int fourcc (char c1, char c2, char c3, char c4);
int codigoValido (unsigned int n, int tamanho);
/*============================================================================*/
#endif /* __PROJETO3_H */