]> git.llucax.com Git - z.facultad/75.74/practicos.git/blob - practicas/practica3-corregida/common/common.h
Cosas de Distribuidos I.
[z.facultad/75.74/practicos.git] / practicas / practica3-corregida / common / common.h
1 /* Released underOpen Software License v. 2.0
2  *
3  * This Open Software License (the "License") applies to any original work of authorship 
4  * (the "Original Work") whose owner (the "Licensor") has placed the following notice 
5  * immediately following the copyright notice for the Original Work:
6  *
7  *     Licensed under the Open Software License version 2.0
8  *
9  * See http://www.opensource.org/licenses/osl-2.0.php or the LICENSE file for more
10  * details.
11  */
12
13 #ifndef _ECHO_COMMON_H_
14 #define _ECHO_COMMON_H_
15
16 #include <stdio.h>
17
18 void print_msg (FILE *fp, const char *fmt, ...);
19
20 #endif // _ECHO_COMMON_H_
21