Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/edit/sheet.h

    r3e6a98c5 rb72efe8  
    3939#include <adt/list.h>
    4040#include <sys/types.h>
    41 #include <stdbool.h>
     41#include <bool.h>
    4242
    4343/** Direction (in linear space) */
     
    5050
    5151/** Sheet */
    52 struct sheet;
    53 typedef struct sheet sheet_t;
     52typedef struct {
     53        /* Note: This structure is opaque for the user. */
     54
     55        size_t text_size;
     56        size_t dbuf_size;
     57        char *data;
     58
     59        list_t tags;
     60} sheet_t;
    5461
    5562/** Character cell coordinates
     
    9097} tag_t;
    9198
    92 extern int sheet_create(sheet_t **);
     99extern int sheet_init(sheet_t *);
    93100extern int sheet_insert(sheet_t *, spt_t *, enum dir_spec, char *);
    94101extern int sheet_delete(sheet_t *, spt_t *, spt_t *);
     
    101108extern void spt_get_coord(spt_t const *, coord_t *);
    102109extern bool spt_equal(spt_t const *, spt_t const *);
    103 extern wchar_t spt_next_char(spt_t, spt_t *);
    104 extern wchar_t spt_prev_char(spt_t, spt_t *);
    105110
    106111extern void sheet_place_tag(sheet_t *, spt_t const *, tag_t *);
Note: See TracChangeset for help on using the changeset viewer.