Skip to content

Commit 9ccd8d3

Browse files
committed
Update project status in README and gitignore
Housekeeping: - Gotta let everyone know i'm back on my bs. - Also gotta make *.out files not show up in `git status`, so add on a c language gitignore template to existing `.gitignore` and integrate.
1 parent bb35b33 commit 9ccd8d3

File tree

2 files changed

+64
-10
lines changed

2 files changed

+64
-10
lines changed

.gitignore

+56-8
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,66 @@
1-
files being edited
1+
# always allow c files
2+
!*.c
3+
!*.h
4+
5+
#files being edited
26
*~
37
*swp
48

59
# make and build files
610
*.lst
7-
*.o
8-
*.eep
9-
*.lss
10-
*.map
1111
*.sym
12+
13+
# Prerequisites
14+
*.d
15+
16+
# Object files
17+
*.o
18+
*.ko
19+
*.obj
1220
*.elf
21+
# Linker output
22+
*.ilk
23+
*.map
24+
*.exp
25+
26+
# Precompiled Headers
27+
*.gch
28+
*.pch
29+
30+
# Libraries
31+
*.lib
32+
*.a
33+
*.la
34+
*.lo
35+
36+
# Shared objects (inc. Windows DLLs)
37+
*.dll
38+
*.so
39+
*.so.*
40+
*.dylib
41+
42+
# Executables
43+
*.exe
44+
*.out
45+
*.app
46+
*.i*86
47+
*.x86_64
1348
*.hex
49+
*.eep
50+
51+
# Debug files
52+
*.dSYM/
53+
*.su
54+
*.idb
55+
*.pdb
56+
57+
# Kernel Module Compile Results
58+
*.mod*
59+
*.cmd
60+
.tmp_versions/
61+
modules.order
62+
Module.symvers
63+
Mkfile.old
64+
dkms.conf
1465

1566

16-
# always allow c files
17-
!*.c
18-
!*.h

README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
Excercises from "The C Programming Language, 2nt Ed."
1+
Exercises from "The C Programming Language, 2nt Ed."
22
=====================================================
33

44

55

6-
Basically just slowly going through the excercises in the book and keeping them here.
6+
Basically just slowly going through the exercises in the book and keeping them here.
7+
8+
Update 2022:
9+
I found this and I'm going through it again. I lost some old progress but it's been 8 years so it won't hurt me to go through some things again.
10+
For the most part I'm just typing in things from the book and adding comments to help me understand the code while reading and updating style to make code lint clean.
11+
12+

0 commit comments

Comments
 (0)