Merge branch 'master' of ssh://gapil.gnulinux.it/srv/git/gapil
[gapil.git] / sources / full_fread.c
index 0567994a3caa9e58e0b52cd71096c97c55df7f82..6278f332be6f5627d8e6e76a9ab0decfb948c584 100644 (file)
@@ -1,6 +1,6 @@
 /* full_fread.c
  * 
- * Copyright (C) 2005 Simone Piccardi
+ * Copyright (C) 2005-2006 Simone Piccardi
  * 
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * Routine to read an exact number of bytes from a file
  *
  * Author: Simone Piccardi
- * Mat. 2005
- *
- * $Id$ 
+ * Mar. 2005
  *
  ****************************************************************/
-#include <unistd.h>
-#include <errno.h>
-#include <stdio.h>      /* include standard I/O library */
+#include <unistd.h>      /* unix standard library */
+#include <errno.h>       /* error definitions and routines */
+#include <stdio.h>      /* standard I/O library */
 
 size_t full_fread(FILE *file, void *buf, size_t count) 
 {