Abbreviation for current

Solution 1:

cur.

Just add a period to hint that it is an abbreviation.

See http://www.thefreedictionary.com/cur:

  1. currency.
  2. current.

Solution 2:

When coding, I've typically used curr to match the length of the names of the next and prev variables that are usually also involved, e.g.

void *next = NULL;
void *prev = NULL;
void *curr = NULL;