File: u_init.c

package info (click to toggle)
xdms 1.3.2-6
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 296 kB
  • ctags: 139
  • sloc: ansic: 1,514; makefile: 82; sh: 51
file content (28 lines) | stat: -rw-r--r-- 507 bytes parent folder | download | duplicates (7)
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

/*
 *     xDMS  v1.3  -  Portable DMS archive unpacker  -  Public Domain
 *     Written by     Andre Rodrigues de la Rocha  <adlroc@usa.net>
 *
 *     Decruncher reinitialization
 *
 */

#include <string.h>

#include "cdata.h"
#include "u_init.h"
#include "u_quick.h"
#include "u_medium.h"
#include "u_deep.h"
#include "u_heavy.h"


void Init_Decrunchers(void){
	quick_text_loc = 251;
	medium_text_loc = 0x3fbe;
	heavy_text_loc = 0;
	deep_text_loc = 0x3fc4;
	init_deep_tabs = 1;
	memset(text,0,0x3fc8);
}