mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
fa993e5130
Mostly scripted like all the others, manually added tags to Makefile and build/config input files. Signed-off-by: Dave Chinner <dchinner@redhat.com>
14 lines
275 B
C
14 lines
275 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (c) 2000 Silicon Graphics, Inc.
|
|
* All Rights Reserved.
|
|
*/
|
|
#ifndef _STR_TO_BYTES_
|
|
#define _STR_TO_BYTES_
|
|
|
|
int str_to_bytes ( char * );
|
|
long str_to_lbytes ( char * );
|
|
long long str_to_llbytes( char * );
|
|
|
|
#endif
|