<!--
{
  "documentType" : "article",
  "framework" : "Swift",
  "identifier" : "/documentation/Swift/using-imported-c-macros-in-swift",
  "metadataVersion" : "0.1.0",
  "role" : "article",
  "title" : "Using Imported C Macros in Swift"
}
-->

# Using Imported C Macros in Swift

Use imported C-defined macros as constants.

## Overview

Swift automatically imports simple, constant-like macros, declared with the `#define`
directive, as global constants. Macros are imported when they use literals for string,
floating-point, or integer values, or use operators like `+`, `-`, `>`, and `==`
between literals or previously defined macros. This example defines some simple macros
in a C header:

```occ
#define FADE_ANIMATION_DURATION 0.35
#define VERSION_STRING "2.2.10.0a"
#define MAX_RESOLUTION 1268

#define HALF_RESOLUTION (MAX_RESOLUTION / 2)
#define IS_HIGH_RES (MAX_RESOLUTION > 1024)
```

When imported into Swift, the macros in the above example are equivalent to these
constant declarations:

```swift
let FADE_ANIMATION_DURATION = 0.35
let VERSION_STRING = "2.2.10.0a"
let MAX_RESOLUTION = 1268

let HALF_RESOLUTION = 634
let IS_HIGH_RES = true
```

### Use Functions and Generics Instead of Complex Macros

C macros that are more complex than simple constant definitions have no counterpart
in Swift. You use complex macros in C and Objective-C to avoid type-checking constraints
or to avoid retyping large amounts of boilerplate code. However, macros can make
debugging and refactoring difficult. In Swift, you can use functions and generics
to achieve the same results without any compromises.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)