Search

March 02
Genel »
...bir tane C başlık dosyamız olsun.

```c
#ifndef KAT_H
#define KAT_H

#define UC...
February 25
Learn »
...SOCKET;
#else
typedef unsigned int SOCKET;
#endif

#ifndef FD_SETSIZE
#define FD_SETSIZE      64
#endif...
November 25, 2023
General »
...h> directly; include <byteswap.h> instead."
#endif

#ifndef _BITS_BYTESWAP_H
#define _BITS_BYTESWAP_H...
September 24, 2023
Issues »
...c) 2012 Apple Inc. All rights reserved.
 * [...]
 */
#ifndef _INT8_T
#define _INT8_T
typedef __signed...
March 27, 2023
Learn »
...feature A enabled");
    }

}

```

Unfortunatly there is not #ifndef, so in case you want to make...
January 09, 2023
Issues »
...not. They can be used like this:

#ifndef __has_feature         // Optional of course.
  #define __has...
December 10, 2022
Issues »
...Have_Qsort_R = true;
```

gcc/config.c
```
#ifndef GCC_CONFIG_H
#define GCC_CONFIG_H...
December 10, 2022
Issues »
...Have_Qsort_R = true;
```

gcc/config.h
```
#ifndef GCC_CONFIG_H
#define GCC_CONFIG_H...
April 11, 2022
Learn »
...bool expr) {...}
```

library.c
```
include "config.h"
#ifndef USE_MY_ASSERT
    void MY_ASSERT(bool...
March 20, 2022
Learn »
...include guard idiom:

// This is foo.h
#ifndef INCLUDED_FOO_H_
#define INCLUDED_FOO_H...
« First   ‹ Prev
1 2
Next ›   Last »