File: nvram.h

package info (click to toggle)
mol 0.9.61-6
  • links: PTS
  • area: contrib
  • in suites: woody
  • size: 6,140 kB
  • ctags: 8,491
  • sloc: ansic: 50,560; asm: 2,826; sh: 458; makefile: 373; perl: 165; lex: 135; yacc: 131
file content (24 lines) | stat: -rw-r--r-- 603 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* 
 *   Creation Date: <1999/11/14 01:41:51 samuel>
 *   Time-stamp: <1999/11/14 01:42:33 samuel>
 *   
 *	<nvram.h>
 *	
 *	NVRAM interface
 *   
 *   Copyright (C) 1999 Samuel Rydh (samuel@ibrium.se)
 *   
 *   This program is free software; you can redistribute it and/or
 *   modify it under the terms of the GNU General Public License
 *   as published by the Free Software Foundation
 *   
 */

#ifndef _H_NVRAM
#define _H_NVRAM

extern int nvram_read( int offs, char *buf, int len );
extern int nvram_write( int offs, char *buf, int len );
extern int nvram_size( void );

#endif   /* _H_NVRAM */