~ubuntu-branches/ubuntu/karmic/unsort/karmic

« back to all changes in this revision

Viewing changes to shuffle.h

  • Committer: Bazaar Package Importer
  • Author(s): Guus Sliepen
  • Date: 2008-06-08 12:53:54 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080608125354-yizugn2e7fxzxuix
Tags: 1.1.0-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*****************************************************************************
 
2
 
 
3
        unsort - reorder files semi-randomly
 
4
        Copyright (C) 2007, 2008  Wessel Dankers <wsl@fruit.je>
 
5
 
 
6
        This program is free software: you can redistribute it and/or modify
 
7
        it under the terms of the GNU General Public License as published by
 
8
        the Free Software Foundation, either version 3 of the License, or
 
9
        (at your option) any later version.
 
10
 
 
11
        This program is distributed in the hope that it will be useful,
 
12
        but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
        GNU General Public License for more details.
 
15
 
 
16
        You should have received a copy of the GNU General Public License
 
17
        along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 
 
19
        $Id: shuffle.h 1323 2008-06-07 19:58:01Z wsl $
 
20
        $URL: http://rot.zo.oi/svn/wsl/src/unsort/shuffle.h $
 
21
 
 
22
*****************************************************************************/
 
23
 
 
24
#ifndef SHUFFLE_H
 
25
#define SHUFFLE_H
 
26
 
 
27
typedef void (*shuffle_algo_t)(uint32_t *, uint32_t *, uint32_t);
 
28
 
 
29
extern const shuffle_algo_t shuffle_heuristic;
 
30
 
 
31
extern void shuffle_seed(uint32_t);
 
32
extern void shuffle_tmp(uint32_t *);
 
33
extern void shuffle_init(uint32_t *, uint32_t);
 
34
extern void shuffle_none(uint32_t *, uint32_t *, uint32_t);
 
35
extern void shuffle_random(uint32_t *, uint32_t *, uint32_t);
 
36
extern void shuffle_bitreverse(uint32_t *, uint32_t *, uint32_t);
 
37
extern void shuffle_sqrtbase(uint32_t *, uint32_t *, uint32_t);
 
38
 
 
39
#endif