~ubuntu-branches/debian/lenny/alpine/lenny

« back to all changes in this revision

Viewing changes to alpine/alpine.h

  • Committer: Bazaar Package Importer
  • Author(s): Asheesh Laroia
  • Date: 2007-02-17 13:17:42 UTC
  • Revision ID: james.westby@ubuntu.com-20070217131742-99x5c6cpg1pbkdhw
Tags: upstream-0.82+dfsg
ImportĀ upstreamĀ versionĀ 0.82+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * $Id: alpine.h 190 2006-10-18 21:33:25Z mikes@u.washington.edu $
 
3
 *
 
4
 * ========================================================================
 
5
 * Copyright 2006 University of Washington
 
6
 *
 
7
 * Licensed under the Apache License, Version 2.0 (the "License");
 
8
 * you may not use this file except in compliance with the License.
 
9
 * You may obtain a copy of the License at
 
10
 *
 
11
 *     http://www.apache.org/licenses/LICENSE-2.0
 
12
 *
 
13
 * ========================================================================
 
14
 */
 
15
 
 
16
#ifndef ALPINE_ALPINE_INCLUDED
 
17
#define ALPINE_ALPINE_INCLUDED
 
18
 
 
19
 
 
20
#include "../pith/state.h"
 
21
 
 
22
 
 
23
/* exported protoypes */
 
24
void          main_menu_screen(struct pine *);
 
25
unsigned long pine_gets_bytes(int);
 
26
void          quit_screen(struct pine *);
 
27
int           panicking(void);
 
28
int           rule_setup_type(struct pine *ps, int flags, char *prompt);
 
29
STORE_S      *pine_pico_get(void);
 
30
int           pine_pico_give(STORE_S **);
 
31
int           pine_pico_writec(int, STORE_S *);
 
32
int           pine_pico_writec_noucs(int, STORE_S *);
 
33
int           pine_pico_readc(unsigned char *, STORE_S *);
 
34
int           pine_pico_readc_noucs(unsigned char *, STORE_S *);
 
35
int           pine_pico_puts(STORE_S *, char *);
 
36
int           pine_pico_puts_noucs(STORE_S *, char *);
 
37
int           pine_pico_seek(STORE_S *, long, int);
 
38
 
 
39
 
 
40
#endif /* ALPINE_ALPINE_INCLUDED */