Click here to Skip to main content
15,908,834 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Other dirty c++ programmers exists? Pin
Steve Wellens16-Jan-15 10:45
Steve Wellens16-Jan-15 10:45 
GeneralRe: Other dirty c++ programmers exists? Pin
User 1106097916-Jan-15 10:52
User 1106097916-Jan-15 10:52 
GeneralRe: Other dirty c++ programmers exists? Pin
Mike Hankey16-Jan-15 10:55
mveMike Hankey16-Jan-15 10:55 
GeneralRe: Other dirty c++ programmers exists? Pin
User 1106097916-Jan-15 11:01
User 1106097916-Jan-15 11:01 
GeneralRe: Other dirty c++ programmers exists? Pin
CPallini16-Jan-15 12:21
mveCPallini16-Jan-15 12:21 
GeneralRe: Other dirty c++ programmers exists? Pin
User 1106097916-Jan-15 12:26
User 1106097916-Jan-15 12:26 
GeneralRe: Other dirty c++ programmers exists? Pin
Eddy Vluggen16-Jan-15 13:23
professionalEddy Vluggen16-Jan-15 13:23 
GeneralRe: Other dirty c++ programmers exists? Pin
PIEBALDconsult16-Jan-15 13:27
mvePIEBALDconsult16-Jan-15 13:27 
Here's some of my C goodness from the late 90s:

C++
/**************************************************************************************************************/
/* Add ability to override the standard routines from string.h                                                */


# ifdef __OVERRIDE__

# ifdef strlen
# undef strlen
# endif

# define strchr(str,ch)       str_chr  ( str , ch , CASE_SENSITIVE , NULL , NULL )
# define strcat(str1,str2)    str_ncat ( str1 , str2 , 0 )
# define strcmp(str1,str2)    str_ncmp ( str1 , str2 , 0 , CASE_SENSITIVE )
# define strlen(str)          str_len  ( str )
# define strncat(str1,str2,n) str_ncat ( str1 , str2 , n )
# define strncmp(str1,str2,n) str_ncmp ( str1 , str2 , n , CASE_SENSITIVE )
# define strrchr(str,ch)      str_rchr ( str , ch , CASE_SENSITIVE , NULL , NULL )
# define strstr(str1,str2)    str_str  ( str1 , str2 , CASE_SENSITIVE , NULL , NULL )

# endif


Big Grin | :-D
GeneralRe: Other dirty c++ programmers exists? Pin
User 1106097916-Jan-15 23:50
User 1106097916-Jan-15 23:50 
GeneralRe: Other dirty c++ programmers exists? Pin
Henry Skoglund16-Jan-15 14:50
Henry Skoglund16-Jan-15 14:50 
GeneralRe: Other dirty c++ programmers exists? Pin
Richard Andrew x6416-Jan-15 16:14
professionalRichard Andrew x6416-Jan-15 16:14 
GeneralRe: Other dirty c++ programmers exists? Pin
Henry Skoglund16-Jan-15 16:33
Henry Skoglund16-Jan-15 16:33 
GeneralRe: Other dirty c++ programmers exists? Pin
Paul M Watt16-Jan-15 16:43
mentorPaul M Watt16-Jan-15 16:43 
JokeRe: Other dirty c++ programmers exists? Pin
Sander Rossel17-Jan-15 3:29
professionalSander Rossel17-Jan-15 3:29 
GeneralRe: Other dirty c++ programmers exists? Pin
User 1106097917-Jan-15 4:23
User 1106097917-Jan-15 4:23 
GeneralRe: Other dirty c++ programmers exists? Pin
Sander Rossel17-Jan-15 5:20
professionalSander Rossel17-Jan-15 5:20 
GeneralRe: Other dirty c++ programmers exists? Pin
Jörgen Andersson17-Jan-15 6:44
professionalJörgen Andersson17-Jan-15 6:44 
GeneralRe: Other dirty c++ programmers exists? Pin
Sander Rossel18-Jan-15 9:40
professionalSander Rossel18-Jan-15 9:40 
GeneralRe: Other dirty c++ programmers exists? Pin
ed welch17-Jan-15 4:35
ed welch17-Jan-15 4:35 
GeneralRe: Other dirty c++ programmers exists? Pin
User 1106097917-Jan-15 4:51
User 1106097917-Jan-15 4:51 
GeneralRe: Other dirty c++ programmers exists? Pin
RedDk17-Jan-15 8:06
RedDk17-Jan-15 8:06 
GeneralRe: Other dirty c++ programmers exists? Pin
User 1106097917-Jan-15 8:56
User 1106097917-Jan-15 8:56 
GeneralFree Textbooks Pin
Brisingr Aerowing16-Jan-15 9:50
professionalBrisingr Aerowing16-Jan-15 9:50 
GeneralRe: Free Textbooks Pin
Roger Wright16-Jan-15 10:26
professionalRoger Wright16-Jan-15 10:26 
GeneralRe: Free Textbooks Pin
Brisingr Aerowing16-Jan-15 11:00
professionalBrisingr Aerowing16-Jan-15 11:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.