1 | //===-- GPU Implementation of fread ---------------------------------------===// |
2 | // |
3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
4 | // See https://llvm.org/LICENSE.txt for license information. |
5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
6 | // |
7 | //===----------------------------------------------------------------------===// |
8 | |
9 | #include "src/stdio/fread.h" |
10 | #include "src/stdio/gpu/file.h" |
11 | |
12 | #include <stdio.h> |
13 | |
14 | namespace LIBC_NAMESPACE { |
15 | |
16 | LLVM_LIBC_FUNCTION(size_t, fread, |
17 | (void *__restrict buffer, size_t size, size_t nmemb, |
18 | ::FILE *stream)) { |
19 | if (size == 0 || nmemb == 0) |
20 | return 0; |
21 | auto result = file::read(f: stream, data: buffer, size: size * nmemb); |
22 | return result / size; |
23 | } |
24 | |
25 | } // namespace LIBC_NAMESPACE |
26 | |