this library helps you for using Local File System

Revision:
2:a1a5f37c1573
Parent:
1:2ca69b58dae7
Child:
3:3d65120edea0
diff -r 2ca69b58dae7 -r a1a5f37c1573 lfs_useful.h
--- a/lfs_useful.h	Fri Apr 17 06:58:41 2015 +0000
+++ b/lfs_useful.h	Fri Apr 17 07:01:34 2015 +0000
@@ -2,10 +2,11 @@
 #define _LFS_USEFUR_H_20150417_1537_
 
 /** read some member of csv format document in local file and write in arrangement
+ *
  * @param f write FILE *(name) 's name
  * @param ar arrangement which you want to get data
  * @param num the number of elements you want to get
-*/
+ */
 void read_some(FILE *f,double *ar,int num){
     for(int i=0; i<num; i++)fscanf(f,"%lf,",&ar[i]);
 }