kjv

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

kjv_config.h (211B)


      1 #pragma once
      2 
      3 #include <stdbool.h>
      4 
      5 typedef struct {
      6     bool highlighting;
      7     bool pretty;
      8 
      9     int maximum_line_length;
     10 
     11     int context_before;
     12     int context_after;
     13     bool context_chapter;
     14 } kjv_config;