damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

str_block.h (235B)


      1 //
      2 //  str_block.h
      3 //  damus
      4 //
      5 //  Created by William Casarin on 2023-04-09.
      6 //
      7 
      8 #ifndef str_block_h
      9 #define str_block_h
     10 
     11 typedef struct str_block {
     12     const char *start;
     13     const char *end;
     14 } str_block_t;
     15 
     16 #endif /* str_block_h */