Parolin 0.7.9 6796
Console (soon DLLs) to do a tar like job
Loading...
Searching...
No Matches
LzmaUtil.c File Reference
#include "Precomp.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "../../CpuArch.h"
#include "../../Alloc.h"
#include "../../7zFile.h"
#include "../../7zVersion.h"
#include "../../LzFind.h"
#include "../../LzmaDec.h"
#include "../../LzmaEnc.h"

Macros

#define CONVERT_INT_TO_STR(charType, tempSize)
 
#define IN_BUF_SIZE   (1 << 16)
 
#define OUT_BUF_SIZE   (1 << 16)
 

Functions

int lgetpor_ar (__int64 max, __int64 fatia)
 
int Z7_CDECL main_ar (int numArgs, const char *args[])
 

Macro Definition Documentation

◆ CONVERT_INT_TO_STR

#define CONVERT_INT_TO_STR ( charType,
tempSize )
Value:
unsigned char temp[tempSize]; \
unsigned i = 0; \
while (val >= 10) \
{ \
temp[i++] = (unsigned char)('0' + (unsigned)(val % 10)); \
val /= 10; \
} \
*s++ = (charType)('0' + (unsigned)val); \
while (i != 0) \
{ \
i--; \
*s++ = (charType)temp[i]; \
} \
*s = 0; \
return s;
lzma_index ** i
Definition index.h:629

◆ IN_BUF_SIZE

#define IN_BUF_SIZE   (1 << 16)

◆ OUT_BUF_SIZE

#define OUT_BUF_SIZE   (1 << 16)

Function Documentation

◆ lgetpor_ar()

int lgetpor_ar ( __int64 max,
__int64 fatia )
extern

◆ main_ar()

int Z7_CDECL main_ar ( int numArgs,
const char * args[] )