OSDN Git Service

Revert "Revert "Merge branch 'master' of git.osdn.net:/gitroot/hengband/hengband""
[hengbandforosx/hengbandosx.git] / src / util / tag-sorter.h
1 #pragma once
2
3 #include "system/angband.h"
4
5 /*
6  * Sort-array element
7  */
8 typedef struct tag_type {
9     int tag;
10     int index;
11 } tag_type;
12
13 void tag_sort(tag_type elements[], int number);