File: todo.h

package info (click to toggle)
screem 0.2.1-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 3,748 kB
  • ctags: 2,270
  • sloc: ansic: 26,366; sh: 7,453; makefile: 512; sed: 93; perl: 18
file content (16 lines) | stat: -rw-r--r-- 335 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef SCREEM_TODO_H
#define SCREEM_TODO_H

typedef struct _Todo_item {
        gchar *task;
        gchar *assigned;
        gchar *priority;
        gchar *linked_to;
        gchar *description;
} Todo_item;

Todo_item* screem_todo_item_new( void );
void screem_todo_item_destroy( Todo_item *item );
void todo_view( void );

#endif