summaryrefslogtreecommitdiff
path: root/direct/timothy_tests/linux_tests/lib.h
blob: fa0cfbe281a669c5907c8a8b6394d1d7c1a4fdfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
 * YAFFS: Yet another Flash File System . A NAND-flash specific file system. 
 *
 * Copyright (C) 2002-2010 Aleph One Ltd.
 *   for Toby Churchill Ltd and Brightstar Engineering
 *
 * Created by Timothy Manning <timothy@yaffs.net>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 2.1 as
 * published by the Free Software Foundation.
 *
 * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
 */

#ifndef __lib_h__
#define __lib_h__
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#define NAME_RANGE 10
#define ROOT_PATH "/mnt/y/"
#define FILE_NAME_LENGTH 3
#define HEAD 0
#define TAIL 1

typedef struct node_temp{
	char *string;
	struct node_temp *next; 
}node;

int get_exit_on_error(void);
void set_exit_on_error(int val);
int delete_linked_list(node *head_node);
node * linked_list_add_node(int pos,node *head_node);
int random_int(void);
char * generate_random_string(unsigned int length);
void get_error_linux(void);
void check_function(int output);
void print_message(char print_level, char *message);
void set_print_level(int new_level);
int get_print_level(void);
void node_print_pointers(node *current_node);
#endif