*
* struct: cstack_t which defines char stack type in heap memory
*
- * function: cstack_init to intialize struct of type cstack_t
- * function: cstack_t->push to add one char on top if the stack
+ * function: cstack_init to initialize struct of type cstack_t
+ * function: cstack_t->push to add one char on top of the stack
* function: cstack_t->pop to remove the top char from the stack
* function: cstack_t->top to test if the top char is a given char
* function: cstack_t->empty to test if the stack is empty
*
* struct: cstring_t which defines a expandable c string type in heap memory
*
- * function: cstring_init to intialize struct of type cstring_t
+ * function: cstring_init to initialize struct of type cstring_t
* function: cstring_t->expand to add one character to the struct
* function: cstring_t->expand_arr to add a string to the struct
* function: cstring_t->strip to remove a substring
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*
- * enum: line_bitmask which enumerates markdown formating bits
+ * enum: line_bitmask which enumerates markdown formatting bits
*
* struct: deck_t the root object representing a deck of slides
* struct: slide_t a linked list element of type slide contained in a deck
*
* function: markdown_load is the main function which reads a file handle,
* and initializes deck, slides and lines
- * function: markdown_analyse which is used to identify line wide formating
+ * function: markdown_analyse which is used to identify line wide formatting
* rules in given line
* function: markdown_debug to print a report of the generated data structure
* function: adjust_line_length to calculate line length excluding markup
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
- * function: url_init to intialize a new url object
+ * function: url_init to initialize a new url object
*/
typedef struct _url_t {
*
* function: ncurses_display initializes ncurses, defines colors, calculates
* window geometry and handles key strokes
- * function: add_line detects inline markdown formating and prints line char
+ * function: add_line detects inline markdown formatting and prints line char
* by char
* function: fade_in, fade_out implementing color fading in 256 color mode
* function: int_length to calculate decimal length of slide count