GithubHelp home page GithubHelp logo

eazdxpeng / macros Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ramdeoshubham/macros

0.0 0.0 0.0 443 KB

A collection of commonly used C MACROS

Home Page: http://ramdeoshubham.com/macros

License: MIT License

C 98.81% Makefile 1.19%

macros's Introduction


#macros.h

Useful C #macros

This is a collection of commonly used C Macros I found on internet, and as suggested by my friends.

Why this is awesome

Using C Macros, we can extend C with a lot of useful functionality. For example, we can create loops like foreach which are very useful and handy when it comes to arrays. These are available in most of high level languages but not in C. But we got macros in C and so we can add on our own!

How to use

Just download macros.h from here and include it to the top.

#include "macros.h"

Note that there is an ASSERT macro useful for debugging purposes. To enable it, you need to #define DEBUG before including macros.h.

Available macros

Boolean

  • TRUE
  • FALSE

We get TRUE as 1 and FALSE as 0.

  while (TRUE) {
    if( (x > 5) == FALSE ) break;
    x++; printf("hi ");
  }

Operators

  • AND
  • OR
  • NOT
  • NOTEQUALS
  • EQUALS
  • IS

These can be used to perform logical operations more conveniently. Specially, == is EQUALS and = is IS. So the age old confusion gets clear here.

x = 5;
if( x EQUALS 0 OR x > 10 AND x NOTEQUALS 15)
{
  x IS 1;
}
else if ( NOT (x > 0) ) {
  x IS 0;
}
else x IS 100;
printf("\n%d\n",x);

Loops

  • FORVER

A simple infinite loop. It needs to be break from the scope to stop it.

FOREVER{
  if( x > 5 ) break;
  x++;printf("hi ");
}
  • RANGE (var, from, to)

A simple from - to ranged loop.

int i;
RANGE (i, 10, 20){
  printf("%d ", i);
}

/* OUTPUT:
   10 11 12 13 14 15 16 17 18 19 20 */

It works in both direction way without any modifications required. It will decide on its on when to decrement or increment. Its smart isn't it?

int i;
RANGE (i, 5, -5){
  printf("%d ", i);
}

/* OUTPUT:
   5 4 3 2 1 0 -1 -2 -3 -4 -5 */
  • FOREACH (item, array)

A C implementation of foreach loop, it will go through each element of an array, and will perform operations on each element as returned into pointer item variable.

STRING A[] = {"apple", "banana", "orange", "grapes"};
FOREACH (STRING *i, A){
  printf("I love %s\n", *i);
}

/* OUTPUT:
   I love apple
   I love banana
   I love orange
   I love grapes */

See also STRING in strings section.

Obviously, for single line statements, {} are not required.

Math

There are a lot of macros for mathematical purposes.

  • PI
  • RAD2DEG(x)
  • DEG2RAD(x)

These can be used to convert angles, where PI is a constant.

printf("%d ", RAD2DEG(PI) );

/* OUTPUT:
   180 */
  • ALIGNB(x, align)
  • ALIGN(x, align)
  • FLOORB(x, align)
  • FLOOR(x, align)
  • CEILB(x, align)
  • CEIL(x, align)
  • CLIP(x, min, max)
  • UCLIP(x, max)
  • LCLIP(x, min)
  • MIN(x, y)
  • MAX(x, y)
  • ABS(x)
  • DIFF(a,b)

Functioning of above Macros are quite obvious. (TL;D write!)

  • ISNAN(x)

For example, ISNAN (0.0/0.0), It Checks if x is NOT A NUMBER.

  • IMPLIES(x, y)

  • SWAP(a, b)

  • SORT(a, b)

These two are interesting. Also if you look at their #defines, they don't have any temporary variable.

int x = 10, y = 5, z = 0;
SORT(x,y); /*now x should be smaller one*/
SWAP(x,z); /*now z and x swaps */
printf("%d", z);

/* OUTPUT:
   5 */
  • COMPARE(x, y)
  • SIGN(x)

Returns 1 on positive and -1 on negative.

  • IS_ODD( num )
  • IS_EVEN( num )
  • IS_BETWEEN(n,L,H)

For example:

int x;
printf("Enter a num: ");
scanf("%d", &x);
if ( IS_EVEN (x) && IS_BETWEEN(x, 0, 20) ){
  printf("working... \n");
}

/* OUTPUT:
   Enter a num: 12
   working...*/

Bits

  • BIT(x)
  • SETBIT(x,p)
  • CLEARBIT(x,p)
  • GETBIT(x,p)
  • TOGGLEBIT(x,p)

People use constant 1024 many times, now you can get it simply by BIT(10).

Arrays

  • ARRAY_SIZE(a)
  • SET(d, n, v)
  • ZERO(d, n)
  • COLUMNS(S,E)
  • IS_ARRAY(a)
int arr[] = {1,2,3,4,5,6,7,8,9,10};
if(IS_ARRAY(arr)) {
  SET(arr, ARRAY_SIZE(arr)-4, 10);
  ZERO(arr, 3);
}
RANGE(x, 0, 9) printf("%d ", arr[x]);

/* OUTPUT:
0 0 0 10 10 10 7 8 9 10 */

Strings

  • STRING

Its translates to char*.

STRING x = "hello";
STRING list[] = {"book", "ball", "bucket"};
  • CAT(str1, str2)

Concatenation of two pure strings.

puts ( CAT ("PenPineapple", "ApplePen") );

/* OUTPUT:
   PenPineappleApplePen */
  • STR(s)

Expands s as a string.

puts ( STR (This is a fruit) );

/* OUTPUT:
   This is a fruit */

Tokens

  • PASTE(a,b)
  • PRINT_TOKEN(token)
a = 10;
b = 20;
ab = 0;
x = PASTE(a,b);
PRINT_TOKEN( x );

/* OUTPUT:
   x is 0 */

Debugging

  • LOG (x, fmt, ...)
  • TRY (x, s)
  • ASSERT (n)

ASSERT Macro will require DEBUG to be defined. Also on error, it will return -1 to exit. TRY performs x. Only on error, it shows custom error message. LOG is reverse, it produces message on success of x.

#define DEBUG /* To use ASSERT */
#include "macro.h"
...
  LOG(x=5,"Now square of x is %d", x*x);
  TRY(0>10, "We already knew its an error\n");
  ASSERT(1>2);

/* OUTPUT:
   test.c:125: Now square of x is 25
   test.c:126:We already knew its an error
   1>2 - Failed On Aug  7 2017 At 22:36:23 In File test.c At Line 12

Saturation

  • SATINC(v,L)
  • SATDEC(w,L)

A saturating macro which does v++ and w-- respectively on every call, and does nothing on reaching L limit.

a = 0, b = 7;
for(x=0; x<10; x++){
  SATINC(a,7);
  SATDEC(b,0);
  printf("%d %d, ",a,b);
}

/* OUTPUT:
   1 6, 2 5, 3 4, 4 3, 5 2, 6 1, 7 0, 7 0, 7 0, 7 0, */

Statements

  • STMT(stuff)

Macros involving multiple statements needs braces which are safer to define with a do_while(0) for single execution. STMT expands statements the same way.

STMT (printf("it should be in a macro...\n"););
  • ONCE ( stmts )

This Macro make it sure that the statements within it are performed only once.

a = 1;
RANGE(x,0,10) {
/*ONCE(*/
  a++;
/*);*/
}
printf("%d\n", a);

/* With ONCE */
a = 1;
RANGE(x,0,10) {
ONCE(
  a++;
);
}
printf("%d\n", a);

/* OUTPUT:
   12
   2 */

See also FOREVER in Loops section.

Extern C

  • EXTERN_C_START
  • EXTERN_C_END

These macros are for C++ users. To compile a piece of C code in C++ environment, you can use these macros as follows:

//somecppfile.cpp

// CPP
EXTERN_C_START

    /* C */

    #include <stdio.h>
    int main(void)
    {
      int new = 10;
      printf("%d", new);
    }

EXTERN_C_END
// CPP

/* OUTPUT:
   10 */

As 'new' is a C++ keyword, this would never be compiled with a C++ compiler, but its valid in C. So we used those macros to mix C in C++.

Contribute

The source is very clear and the macros available are too common you will find them everywhere. A good Macro is : Portable, safe, involves as less arbitrary variables as possible. Although I am trying my best, there might be some exception errors, please correct if you find any. Also, if I missed some other interesting macros, please contribute to make this collection complete and more usable.

Conventions

  1. All macros are in UPPERCASE.
  2. In case of any Boolean Macro, the IS_ prefix should be used. For example, IS_EVEN(x). And they should return a 1 or 0 value.
  3. Macros for loops and conditionals should not end with braces so that the user can have the option for single line as well as block style.
  4. A helper macro, which are expanded by some other main macro, usually they are not intended to be used directly. So they should be mentioned with their expansion level as prefix. For example, PASTE(a,b) expands into PASTE2(a,b) which further expands into a##b.

Credit

The real credits goes to all those great C coders who came up with such creative use of C Macros to extend C. I made this collection in honor of The C language and those unknown programmers. I can only take credit for the efforts I made to collect and bringing it to you.

License

Copyright 2017, Shubham Ramdeo. Code released under the MIT License.

#Handpicked C #Macros with โ™ฅ #love !

Don't forget to โ˜…STAR if you like it.

macros's People

Contributors

1ray-1 avatar jll32 avatar ramdeoshubham avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.