| 1 | /*------------------------------------------------------------\
|
|---|
| 2 | | |
|
|---|
| 3 | | Tool : systemcass |
|
|---|
| 4 | | |
|
|---|
| 5 | | File : alias.cc |
|
|---|
| 6 | | |
|
|---|
| 7 | | Author : Kingbo Paul-Jerome |
|
|---|
| 8 | | |
|
|---|
| 9 | | Date : 09_07_2004 |
|
|---|
| 10 | | |
|
|---|
| 11 | \------------------------------------------------------------*/
|
|---|
| 12 | /*
|
|---|
| 13 | * This file is part of the Disydent Project
|
|---|
| 14 | * Copyright (C) Laboratoire LIP6 - Département ASIM
|
|---|
| 15 | * Universite Pierre et Marie Curie
|
|---|
| 16 | *
|
|---|
| 17 | * Home page : http://www-asim.lip6.fr/disydent
|
|---|
| 18 | * E-mail : mailto:richard.buchmann@lip6.fr
|
|---|
| 19 | *
|
|---|
| 20 | * This library is free software; you can redistribute it and/or modify it
|
|---|
| 21 | * under the terms of the GNU Library General Public License as published
|
|---|
| 22 | * by the Free Software Foundation; either version 2 of the License, or (at
|
|---|
| 23 | * your option) any later version.
|
|---|
| 24 | *
|
|---|
| 25 | * Disydent is distributed in the hope that it will be
|
|---|
| 26 | * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 27 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|---|
| 28 | * Public License for more details.
|
|---|
| 29 | *
|
|---|
| 30 | * You should have received a copy of the GNU General Public License along
|
|---|
| 31 | * with the GNU C Library; see the file COPYING. If not, write to the Free
|
|---|
| 32 | * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|---|
| 33 | */
|
|---|
| 34 |
|
|---|
| 35 | #include "alias.h"
|
|---|
| 36 |
|
|---|
| 37 | #include <iostream>
|
|---|
| 38 | #ifdef HAVE_CONFIG_H
|
|---|
| 39 | #include "config.h"
|
|---|
| 40 | #endif
|
|---|
| 41 |
|
|---|
| 42 | const char * alias () {
|
|---|
| 43 | static int i = 0;
|
|---|
| 44 | char * buf = new char[4];
|
|---|
| 45 | buf[3] = '\0';
|
|---|
| 46 | buf[2] = 'a' + i % 26;
|
|---|
| 47 | buf[1] = 'a' + (i / 26) % 26;
|
|---|
| 48 | buf[0] = 'a' + ((i / 26) / 26) % 26;
|
|---|
| 49 | i++;
|
|---|
| 50 | return buf;
|
|---|
| 51 | }
|
|---|
| 52 |
|
|---|