[NFC][Py Reformat] Added more commits to .git-blame-ignore-revs
[llvm-project.git] / libc / src / unistd / swab.cpp
blob44166a623ff42fd28749f7cff5431f2aaa0cf00a
1 //===-- Implementation of swab --------------------------------------------===//
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 //===----------------------------------------------------------------------===//
9 #include "src/unistd/swab.h"
11 #include "src/__support/common.h"
13 namespace __llvm_libc {
15 LLVM_LIBC_FUNCTION(void, swab,
16 (const void *__restrict from, void *__restrict to,
17 ssize_t n)) {
18 const unsigned char *f = static_cast<const unsigned char *>(from);
19 unsigned char *t = static_cast<unsigned char *>(to);
20 for (ssize_t i = 1; i < n; i += 2) {
21 t[i - 1] = f[i];
22 t[i] = f[i - 1];
26 } // namespace __llvm_libc