source: sources/src/alias.cc @ 12

Last change on this file since 12 was 12, checked in by buchmann, 15 years ago

Changes:

  • Convert some includes like <stdlib.h> into <cstdlib>
  • Remove some unused includes
File size: 1.9 KB
Line 
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#include<iostream>
37
38const char * alias ()
39{
40        static int i = 0;
41        char *buf = new char[4];       
42        buf[3] = '\0';
43        buf[2] = 'a' + i % 26;
44        buf[1] = 'a' + (i / 26) % 26;
45        buf[0] = 'a' + ((i / 26) / 26) % 26;
46        i++;   
47        return buf;
48}
49
Note: See TracBrowser for help on using the repository browser.