X-Git-Url: https://yaffs.net/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Ftest-framework%2Ftimothy_tests%2Flinux_tests%2Flib.h;fp=direct%2Ftest-framework%2Ftimothy_tests%2Flinux_tests%2Flib.h;h=0000000000000000000000000000000000000000;hp=9d3350eaf52a0b02a7b246fe1d6bca8b126d71fd;hb=e12e51da5815d80399ec8f5b0da69c7cd7a0f42e;hpb=ebc54da9e29be1de79d77c72c0d8eb91833c641b diff --git a/direct/test-framework/timothy_tests/linux_tests/lib.h b/direct/test-framework/timothy_tests/linux_tests/lib.h deleted file mode 100644 index 9d3350e..0000000 --- a/direct/test-framework/timothy_tests/linux_tests/lib.h +++ /dev/null @@ -1,45 +0,0 @@ -/* - * YAFFS: Yet another Flash File System . A NAND-flash specific file system. - * - * Copyright (C) 2002-2018 Aleph One Ltd. - * - * Created by Timothy Manning - * - * 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 -#include -#include -#include - -#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