Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a minor typo in a comment. No changes to code. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
9b20b8a18cc91a33b79db9c5e4c55131 |
| User & Date: | drh 2017-11-04 13:16:38.897 |
Context
|
2017-11-04
| ||
| 14:56 | Change the "/wiki_rules" page so that it displays a wiki source file, either formatted or plain-text, just like /md_rules does. ... (check-in: bf69c6ebc9 user: drh tags: trunk) | |
| 13:16 | Fix a minor typo in a comment. No changes to code. ... (check-in: 9b20b8a18c user: drh tags: trunk) | |
|
2017-11-03
| ||
| 13:34 | Automatically generate the <html><head>...</head><body> section at the beginning of each HTML document if the header template does not contain a <body> tag. Likewise for the </body></html> after the footer. ... (check-in: f1bb72ed26 user: drh tags: trunk) | |
Changes
Changes to src/mkbuiltin.c.
| ︙ | ︙ | |||
16 17 18 19 20 21 22 | ******************************************************************************* ** ** This is a stand-alone utility program that is part of the Fossil build ** process. This program reads files named on the command line and converts ** them into ANSI-C static char array variables. Output is written onto ** standard output. ** | | | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | ******************************************************************************* ** ** This is a stand-alone utility program that is part of the Fossil build ** process. This program reads files named on the command line and converts ** them into ANSI-C static char array variables. Output is written onto ** standard output. ** ** The makefiles use this utility to package various resources (large scripts, ** GIF images, etc) that are separate files in the source code as byte ** arrays in the resulting executable. */ #include <stdio.h> #include <stdlib.h> #include <string.h> |
| ︙ | ︙ |