File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
# ################################
2
- # Makefile #
2
+ # Makefile #
3
3
# Build Recipie for Executable #
4
- # #
4
+ # #
5
5
# Author: Progyan Bhattacharya #
6
- # Maintainer: Bytes Club #
6
+ # Maintainer: Bytes Club #
7
7
# ################################
8
8
9
9
# Define Compiler
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ void enableRawMode(void);
102
102
int editorReadKey (void );
103
103
104
104
// Row Operation
105
- void appendrow (char * , int );
105
+ void appendRow (char * , int );
106
106
107
107
// File I/O
108
108
void openEditor (char * );
Original file line number Diff line number Diff line change 10
10
extern struct editorConfi E ;
11
11
12
12
// row operations
13
- void appendrow (char * c , int l )
13
+ void appendRow (char * c , int l )
14
14
{
15
15
E .row = realloc (E .row , sizeof (erow ) * (E .no_row + 1 ));
16
16
@@ -37,7 +37,7 @@ void openEditor(char *fname)
37
37
while (linelen > 0 && (val [linelen - 1 ] == '\n' || val [linelen - 1 ] == '\r' ))
38
38
linelen -- ;
39
39
40
- appendrow (val , linelen );
40
+ appendRow (val , linelen );
41
41
}
42
42
free (val );
43
43
fclose (f );
You can’t perform that action at this time.
0 commit comments