diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-20 13:06:33 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-20 13:06:33 +0200 |
commit | d9e7ce3e73cf7eff9ec6ac4398713c8872ec5c4c (patch) | |
tree | eca77de4a68ecb2b15853c94580e3ad0a8859abf /docs/dergods_style_v1.ms | |
parent | update (diff) | |
download | joe-www-d9e7ce3e73cf7eff9ec6ac4398713c8872ec5c4c.tar.gz joe-www-d9e7ce3e73cf7eff9ec6ac4398713c8872ec5c4c.tar.bz2 joe-www-d9e7ce3e73cf7eff9ec6ac4398713c8872ec5c4c.tar.xz joe-www-d9e7ce3e73cf7eff9ec6ac4398713c8872ec5c4c.tar.zst joe-www-d9e7ce3e73cf7eff9ec6ac4398713c8872ec5c4c.zip |
New content, css update
Diffstat (limited to '')
-rw-r--r-- | docs/dergods_style_v1.ms | 169 |
1 files changed, 0 insertions, 169 deletions
diff --git a/docs/dergods_style_v1.ms b/docs/dergods_style_v1.ms deleted file mode 100644 index fff2c0a..0000000 --- a/docs/dergods_style_v1.ms +++ /dev/null @@ -1,169 +0,0 @@ -.defcolor blue rgb 0.1f 0.1f 1.0f -.defcolor bsdred rgb #990000 -.defcolor codered rgb #600000 -.defcolor grey rgb #aaaaaa -.defcolor black rgb #000000 -.color -.de bsdr -.gcolor bsdred -.. -.de endc -.gcolor -.. -.de xa -.XA \\$1 -.ps 12p -.B "\m[bsdred]\\$2\m[]" \\$3 \\$4 -.. -.de b -.B "\m[bsdred]\\$1\m[]" \\$2 \\$3 -.. -.de code -.gcolor bsdred -.CW \\$1 \\$2 \\$3 -.gcolor -.. -.de nh1 -.gcolor bsdred -.NH 1 -.ps 14p -\\$1 -.gcolor -.. -.de nh2 -.gcolor bsdred -.NH 2 -.ps 13p -\\$1 -.gcolor -.. -.de bu -.IP \(bu 2 -.. -. -. -. -. -.nr PS 12p -.nr PO 1.0i -.nr LL 6.5i -.RP no -.P1 -.ND -. -. -. -. -.gcolor black -.bsdr -.TL -.LG -.ps 17p -Dergods' Style and good practices for C/C++ projects -.endc -.AU -.ps 15p -Joe -.AI -42 Lyon Auvergne-Rhône-Alpes -. -. -.XS 1 -.ps 12p -.b "1. Introduction" -.xa 1 "2. Projects and version control" -.xa 1 " 2.1 Directories" -.XE -.bsdr -.PX -.endc -. -. -.nh1 "Introduction" -.PP -The following is a description of -.b "Dergods' Style" -code and project -formatting to put in use if you work on Dergods' Realm-related code or if you -just need a personal good-looking norm to improve your code readablity. It -is heavily inspired by -.b FreeBSD® 's -.pdfhref W -D \ -https://www.freebsd.org/cgi/man.cgi?query=style&apropos=0&sektion=0&\ -manpath=FreeBSD+12.1-RELEASE+and+Ports&arch=default&format=html \ --A \m[black],\m[] \ -\f(CW\m[codered]style(9)\m[]\f[] -.gcolor -with some changes. -.nh1 "Projects and version control" -.nh2 "Directories" -.RS -.bu -Working on a -.b program : -.RS -.bu -All -.b source -and -.b "header files" -should be in the -.code src/ -directory. -.bu -Necessary -.b "media files" -such as images, sounds, fonts, etc... Necessary to the program execution -should be in the -.code media/ -directory. -.bu -Compilation-generated -.b "object files" -should be located in the -.code obj/ -directory. -.bu -.b Sub-programs -or -.b utilities -should be located in the -.code utils/ -directory. -.bu -Optional -.b "man page(s)" -can be made for the project and its specularities and should be located in the -.code man/ -directory. -.RE -.bu -Working on a -.b library : -.RS -.bu -All -.b "source files" -should be located in the -.code src/ -directory. -.bu -Compilation-generated -.b "object files" -should be located in the -.code obj/ -directory. -.bu -Non-optional -.b "man pages" -for every function intended to be used externally -should be located in the -.code man/ -directory. -.bu -.b "Header files" -should be located in the -.code include/ -directory. -.RE -.RE |