diff options
Diffstat (limited to 'TODO')
-rw-r--r-- | TODO | 66 |
1 files changed, 33 insertions, 33 deletions
@@ -17,22 +17,22 @@ II: Transform tabs into spaces. At the moment tabs remain as tabs when centered -r. Figure A: - /------------------------------------------\ - | 1234567890 | - | ________12 | - \------------------------------------------/ + ┌──────────────────────────────────────────┐ + │ 1234567890 │ + │ ________12 │ + └──────────────────────────────────────────┘ Figure B: - /------------------------------------------\ - | 1234567890 | - | ________12 | - \------------------------------------------/ + ┌──────────────────────────────────────────┐ + │ 1234567890 │ + │ ________12 │ + └──────────────────────────────────────────┘ Figure C: - /------------------------------------------\ - | 1234567890 | - | ________12 | - \------------------------------------------/ + ┌──────────────────────────────────────────┐ + │ 1234567890 │ + │ ________12 │ + └──────────────────────────────────────────┘ III: Add a new flag for assuming all lines are of the same length as the longest @@ -43,28 +43,28 @@ III: Add a new flag for assuming all lines are of the same length as the longest This new flag could potentially be -l. Figure A: - /------------------------------------------\ - | int | - | main(int argc, char **argv) | - | { | - | return EXIT_SUCCESS; | - | } | - \------------------------------------------/ + ┌──────────────────────────────────────────┐ + │ int │ + │ main(int argc, char **argv) │ + │ { │ + │ return EXIT_SUCCESS; │ + │ } │ + └──────────────────────────────────────────┘ Figure B: - /------------------------------------------\ - | int | - | main(int argc, char **argv) | - | { | - | return EXIT_SUCCESS; | - | } | - \------------------------------------------/ + ┌──────────────────────────────────────────┐ + │ int │ + │ main(int argc, char **argv) │ + │ { │ + │ return EXIT_SUCCESS; │ + │ } │ + └──────────────────────────────────────────┘ Figure C: - /------------------------------------------\ - | int | - | main(int argc, char **argv) | - | { | - | return EXIT_SUCCESS; | - | } | - \------------------------------------------/ + ┌──────────────────────────────────────────┐ + │ int │ + │ main(int argc, char **argv) │ + │ { │ + │ return EXIT_SUCCESS; │ + │ } │ + └──────────────────────────────────────────┘ |