aboutsummaryrefslogtreecommitdiff
path: root/tools/iDSK/src/Ascii.cpp
blob: 19fced550c8e3653bfef4d1d2382f1f5c280ea99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>
using namespace std;
#include <cmath>
#include <cstring>
#include <cstdio>
#include <ctype.h>

#include "MyType.h"
#include "Ascii.h"

void Ascii(unsigned char *Prg, char *Listing, int Longueur)
{
    int Adr = 0;
    * Listing = 0;
    strncpy(Listing,(const char*)Prg,Longueur);
}