use int instead of size_t as return values to be compatible with snprintf

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@10655 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
2001-09-04 09:56:00 +00:00
parent e5dc1de327
commit 0a5f6ffdd9
5 changed files with 17 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 1999 Kungliga Tekniska H<>gskolan
* Copyright (c) 1999 - 2001 Kungliga Tekniska H<>gskolan
* (Royal Institute of Technology, Stockholm, Sweden).
* All rights reserved.
*
@@ -39,10 +39,10 @@
int
parse_bytes (const char *s, const char *def_unit);
size_t
int
unparse_bytes (int t, char *s, size_t len);
size_t
int
unparse_bytes_short (int t, char *s, size_t len);
#endif /* __PARSE_BYTES_H__ */