summaryrefslogtreecommitdiff
path: root/firmware/common/atoi.h
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-06-26 21:11:29 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-06-26 21:11:29 +0000
commit928e334831f87dfe3b35b50e119b0ade9980b944 (patch)
tree40f96984dc3c51136efcebb84202e03ebba0ccda /firmware/common/atoi.h
parentf186f46f5d10fde5ff9585928f9343cab2c15287 (diff)
downloadrockbox-928e334831f87dfe3b35b50e119b0ade9980b944.tar.gz
rockbox-928e334831f87dfe3b35b50e119b0ade9980b944.zip
Added id3 tracknum (Yusef Napora)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1204 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/common/atoi.h')
-rw-r--r--firmware/common/atoi.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/firmware/common/atoi.h b/firmware/common/atoi.h
new file mode 100644
index 0000000000..118879622b
--- /dev/null
+++ b/firmware/common/atoi.h
@@ -0,0 +1,25 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 by Felix Arends
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19
20#ifndef __ATOI_H__
21#define __ATOI_H__
22
23int atoi (const char *str);
24
25#endif /* __ATOI_H__ */