• skip to content
Logo

User Tools

  • Register
  • Login

Site Tools

  • Recent changes
  • Media Manager
  • Sitemap
You are here: start » return

return

Search

You can find the results of your search below. If you didn't find what you were looking for, you can create or edit the page named after your query with the appropriate tool.

Results

Matching pagenames:

  • return (arduino:c…_structures)
  • return (c:control_structures)
  • return (c:keywords)
  • return (cpp:contr…_structures)
c:examples:mysql_bruteforce: 10 Hits
v[0],argv[0],argv[0],argv[0],argv[0]); #endif return 0; } if(strcmp(argv[3],"-b")) { jump=0... s\" nicht oeffnen.\n", argv[3]); #endif endwin(); return 0; } if( ( logfile=fopen("mysql-bruteforce.log",... s\" nicht oeffnen.\n", argv[3]); #endif endwin(); return 0; } if(my == NULL) { #if ENG && !GER ... ng fehlgeschlagen\n"); #endif endwin(); return 0; } sprintf(user, "%s", argv[1]); sprintf(host
arduino:control_structures:return: 8 Hits
====== return ====== Terminate a function and return a value from a function to the calling function, if desired. ==== Syntax: ==== return; return value; // both forms are valid ==== Parameters ... (){ if (analogRead(0) > 400) { return 1; else{ return 0; } }</code> The return keyword is handy to test a section of code without having to "comment out" large sections o
c:compiler:gcc:warnings: 8 Hits
hes end of non-void function ===== You must add a return value at the end of your sourcecode: <code c> #i... ,i); /* to fix the warning add for this example "return 0;" * warning: control reaches end of non-void function */ //<- here } </code> ===== warning: return type defaults to ‘int’ ===== Add a return type to... ent this for Windows */ /* code example warnings return type defaults to ‘int’ * http://code-reference.c
c:stdlib.h:malloc: 6 Hits
ither a null pointer or a unique pointer.\\ === return value === RETURN VALUE Upon successful completion with size not equal to 0, malloc() shall return a pointer to the allocated space.\\ If size is 0, ... o free() shall be returned.\\ Otherwise, it shall return a null pointer and set errno to indicate the erro... printf("allocation of memory failed.\n"); } return 0; } int main ( void ) { int *buffer, i; pr
c:control_structures:return: 5 Hits
iki library source code example reference}} ===== return ===== <code c> #include <stdio.h> /* includ... <windows.h> /* uncomment this for Windows */ return value; </code> returns a value ===== C Sourceco... if ( strcmp( value1, value2 ) == 0) { return 0; } else { return 1; } } int main(vo... "same\n"); } else { printf("different\n"); } return 0; } </code> output: same same
c:stdlib.h:qsort: 5 Hits
nst int *n1, const int *n2) { if (*n1 == *n2) { return 0; } else if (*n1 < *n2) { return -1; } else if (*n1 > *n2) { return 1; } else return 0; } int main( void ) { int array[]= {42,43,44... array[i]); } printf(" Sorted with qsort\n"); return 0; } </code> ==== output of qsort example ====
c:stdlib.h:realloc: 5 Hits
located, a null pointer shall be returned.\\ === return value === Upon successful completion with a size not equal to 0, realloc() shall return a pointer to the (possibly moved) allocated space.\\ If size ... e is not enough available memory, realloc() shall return a null pointer and set errno to [ENOMEM].\\ ==... printf("allocation of memory failed.\n"); } return 0; } int main ( void ) { int *buffer; printf
c:stdlib.h:bsearch: 5 Hits
function to compare two elements together.\\ == return values: == pointer to an entry in the array that ... the compare function for this bsearch */ char *return_value = (char*) bsearch(my_key, my_strings, my_el... (int(*)(const void*, const void*))strcmp); if (return_value) { printf("Found \"%s\" in the my_strings array.\n", return_value); } else { printf("Did not found \"%s\" in the my_strings array.\
cpp:control_structures:return: 4 Hits
iki library source code example reference}} ===== return ===== <code cpp> #include <iostream> /* including standard library */ return value; </code> returns a value ===== cpp Sourcecode Example ... cout << "better example is" << endl; return 1; cout << "missing" << endl; return 0; } <
c:stdlib.h:calloc: 4 Hits
either a null pointer or a unique pointer.\\ === return value === Upon successful completion with both nelem and elsize non-zero, calloc() shall return a pointer to the allocated space. \\ If either nelem ... o free() shall be returned.\\ Otherwise, it shall return a null pointer and set errno to indicate the erro... printf("allocation of memory failed.\n"); } return 0; } </code> ==== Output ==== Output alloca
c:time.h:ctime: 4 Hits
de> 1970-01-01 00:00:00 +0000 (UTC). === return value === The ctime() function shall return ... nt.\\ Upon successful completion, ctime_r() shall return a pointer to the string pointed to by buf. When a... t); printf("%s\n", ctime(&time_format)); return 0; } </code> === output for this example ===
c:stdlib.h:free: 4 Hits
freed space results in undefined behavior.\\ === return value === The free() function shall not return a ... printf("allocation of memory failed.\n"); } return 0; } int main ( void ) { int *buffer; printf(... f("try to free the buffer\n"); free (buffer); return 0; } </code> ==== Output ==== user@host:~$
lua:codea:stargenerator:star.lua: 4 Hits
0 then self:init(true) return else if self.y >= 1000 or se... self:init(true) return end end if math.rand... self.size = self.size + 1 return end end if s... self.size = self.size + 1 return end end
c:string.h:strcmp: 4 Hits
2 C strings. If both strings are identical, the return value of strcmp is 0. \\ If the string s1 less than s2, the return value is less than 0, \\ and s1 is greater than s2, then the return value greater ... else { printf("different\n"); } return 0; } </code> === Output of strcmp example ===
c:stdlib.h:rand: 3 Hits
c:stdio.h:snprintf: 3 Hits
c:stdio.h:vfscanf: 3 Hits
c:preprocessor:define: 3 Hits
c:conio.h:putch: 3 Hits
c:control_structures: 3 Hits
arduino:control_structures: 3 Hits
c:time.h:clock: 3 Hits
c:conio.h:cgets: 3 Hits
c:stdlib.h:exit: 3 Hits
cpp:control_structures: 3 Hits
c:stdio.h:vsscanf: 3 Hits
c:mysql:mysql.h:mysql_dump_debug_info: 3 Hits
c:graphics.h:setgraphmode: 3 Hits
c:stdio.h:fputc: 3 Hits
c:graphics.h:restorecrtmode: 3 Hits
c:stdio.h:fscanf: 2 Hits
c:stdio.h:fgets: 2 Hits
c:stdio.h:vfprintf: 2 Hits
c:string.h:memcmp: 2 Hits
cpp:variables: 2 Hits
c:mysql:mysql.h:mysql_fetch_field: 2 Hits
c:assert.h:assert: 2 Hits
c:stdio.h:vsprintf: 2 Hits
c:stdio.h:vprintf: 2 Hits
c:mysql:mysql.h:mysql_escape_string: 2 Hits
c:stdio.h:printf: 2 Hits
c:wchar.h:fputwc: 2 Hits
c:stdio.h:rewind: 2 Hits
c:keywords: 2 Hits
c:wchar.h:btowc: 2 Hits
c:stdio.h:putc: 2 Hits
c:stdlib.h:abort: 2 Hits
c:stdio.h:fgetpos: 2 Hits
c:stdio.h:fopen: 2 Hits
c:wchar.h:fputws: 2 Hits
c:examples:hostscanner: 2 Hits
c:mysql:mysql.h:mysql_error: 2 Hits
c:stdio.h:fgetc: 2 Hits
c:string.h:strchr: 2 Hits
c:stdio.h:fclose: 2 Hits
c:mysql:mysql.h:mysql_fetch_fields: 2 Hits
c:stdio.h:ftell: 2 Hits
c:mysql:mysql.h:mysql_get_server_info: 2 Hits
c:mysql:mysql.h:mysql_get_server_version: 2 Hits
c:mysql:mysql.h:mysql_commit: 2 Hits
c:mysql:mysql.h:mysql_get_host_info: 2 Hits
c:stdio.h:fseek: 2 Hits
c:mysql:mysql.h:mysql_get_proto_info: 2 Hits
c:math.h:sin: 2 Hits
c:mysql:mysql.h:mysql_affected_rows: 2 Hits
c:mysql:mysql.h:mysql_autocommit: 2 Hits
c:mysql:mysql.h:mysql_character_set_name: 2 Hits
c:stdio.h:getc: 2 Hits
c:mysql:mysql.h:mysql_info: 2 Hits
c:mysql:mysql.h:mysql_real_connect: 2 Hits
c:string.h:memchr: 2 Hits
c:mysql:mysql.h:mysql_eof: 2 Hits
c:mysql:mysql.h:mysql_drop_db: 2 Hits
c:preprocessor:error: 2 Hits
c:mysql:mysql.h:mysql_change_user: 2 Hits
c:stdio.h:perror: 2 Hits
java:classes:extends: 2 Hits
c:mysql:mysql.h:mysql_debug: 2 Hits
c:stdio.h:fputs: 2 Hits
c:mysql:mysql.h:mysql_create_db: 2 Hits
c:mysql:mysql.h:mysql_data_seek: 2 Hits
c:constant:define: 2 Hits
c:mysql:mysql.h:mysql_errno: 2 Hits
c:stdarg.h:va_arg: 2 Hits
cpp:cmath:sin: 2 Hits
c:conio.h:wherex: 2 Hits
c:conio.h:wherey: 2 Hits
c:stdlib.h:mblen: 2 Hits
c:graphics.h:initgraph: 2 Hits
c:conio.h:ungetch: 2 Hits
c:graphics.h:getmodename: 2 Hits
c:graphics.h:getch: 2 Hits
c:conio.h:cputs: 2 Hits
c:graphics.h:getdefaultpalette: 2 Hits
cpp:cassert:assert: 2 Hits
cpp:constant:define: 2 Hits
c:graphics.h:initwindow: 2 Hits
cpp:cmath:sinh: 2 Hits
c:conio.h:cprintf: 2 Hits
c:graphics.h:showerrorbox: 2 Hits
playground:c:stdio.h:printf: 2 Hits
java:io:printstream:checkerror: 2 Hits
cpp:cmath: 2 Hits
cpp:control_structures:if: 2 Hits
c:conio.h: 2 Hits
java:io:printstream:print: 2 Hits
c:math.h:sinh: 2 Hits
c:setjmp.h:longjmp: 2 Hits
c:setjmp.h:setjmp: 2 Hits
c:mysql:mysql.h:mysql_close: 2 Hits
assembly:8086_88:command_overview: 2 Hits
c:wchar.h:fgetws: 2 Hits
c:stdio.h:fread: 2 Hits
c:wchar.h:fgetwc: 2 Hits
c:mysql:mysql.h:mysql_init: 2 Hits
c:stdlib.h:system: 2 Hits
c:graphics.h:detectgraph: 2 Hits
c:stdio.h:fwrite: 2 Hits
c:complex.h:csin: 1 Hits
c:complex.h:csqrt: 1 Hits
c:complex.h:ctan: 1 Hits
c:complex.h:csinh: 1 Hits
c:complex.h:creal: 1 Hits
c:dos.h:delay: 1 Hits
c:complex.h:conj: 1 Hits
c:complex.h:clog: 1 Hits
c:stdio.h:setvbuf: 1 Hits
c:complex.h:cpow: 1 Hits
c:complex.h:ctanh: 1 Hits
c:complex.h:cproj: 1 Hits
c:math.h:log10: 1 Hits
c:stdlib.h:mbstowcs: 1 Hits
c:wchar.h:vswprintf: 1 Hits
c:datatypes:void: 1 Hits
c:examples:talk_to_a_modem: 1 Hits
c:ctype.h:isspace: 1 Hits
c:stdio.h:setbuf: 1 Hits
c:stdlib.h:strtod: 1 Hits
c:datatypes:double: 1 Hits
c:wchar.h:wcscpy: 1 Hits
c:keywords:stdout: 1 Hits
c:stdlib.h:ldiv: 1 Hits
c:math.h:atan2: 1 Hits
c:ctype.h:iscntrl: 1 Hits
c:stdlib.h:strtoul: 1 Hits
c:stdlib.h:sizeof: 1 Hits
c:complex.h:cexp: 1 Hits
c:datatypes:long: 1 Hits
c:control_structures:else: 1 Hits
c:datatypes:long_double: 1 Hits
c:complex.h:cacos: 1 Hits
c:conio.h:delline: 1 Hits
c:complex.h:cacosh: 1 Hits
c:complex.h:cabs: 1 Hits
c:conio.h:kbhit: 1 Hits
c:ctype.h:isdigit: 1 Hits
c:stdlib.h:getenv: 1 Hits
c:ctype.h:isalpha: 1 Hits
c:conio.h:cscanf: 1 Hits
c:control_structures:break: 1 Hits
c:string.h:memmove: 1 Hits
c:datatypes:short: 1 Hits
c:complex.h:carg: 1 Hits
c:complex.h:catanh: 1 Hits
c:dos.h:setdate: 1 Hits
c:complex.h:ccos: 1 Hits
c:dos.h:nosound: 1 Hits
c:complex.h:ccosh: 1 Hits
c:dos.h:getdate: 1 Hits
c:complex.h:catan: 1 Hits
c:dos.h:sleep: 1 Hits
c:math.h:atan: 1 Hits
c:datatypes:float: 1 Hits
c:complex.h:casin: 1 Hits
c:complex.h:casinh: 1 Hits
c:dos.h:sound: 1 Hits
c:conio.h:clrscr: 1 Hits
c:complex.h:cimag: 1 Hits
c:math.h:floor: 1 Hits
cpp:cctype:ispunct: 1 Hits
cpp:control_structures:break: 1 Hits
cpp:cctype:tolower: 1 Hits
cpp:cctype:isblank: 1 Hits
cpp:cctype:isprint: 1 Hits
cpp:cctype:isxdigit: 1 Hits
cpp:control_structures:goto: 1 Hits
cpp:control_structures:do: 1 Hits
cpp:cmath:ceil: 1 Hits
cpp:cmath:exp: 1 Hits
cpp:cmath:atan: 1 Hits
cpp:cmath:frexp: 1 Hits
cpp:control_structures:continue: 1 Hits
cpp:cctype:toupper: 1 Hits
cpp:cctype:iscntrl: 1 Hits
objective-c:foundation.framework:nsnumber.h:boolvalue: 1 Hits
objective-c:examples:tabbarcontroller: 1 Hits
objective-c:foundation.framework:nsvalue.h:valuewithcgpoint: 1 Hits
c:keywords:return: 1 Hits
c:wchar.h:iswspace: 1 Hits
c:wchar.h:getwchar: 1 Hits
objective-c:examples:navigationcontroller: 1 Hits
cpp:cctype:isgraph: 1 Hits
cpp:cctype:isdigit: 1 Hits
cpp:cctype:isalnum: 1 Hits
cpp:cctype:islower: 1 Hits
cpp:cctype:isspace: 1 Hits
cpp:cctype:isalpha: 1 Hits
cpp:cmath:acos: 1 Hits
cpp:cmath:floor: 1 Hits
cpp:cctype:isascii: 1 Hits
objective-c:foundation.framework:nsnumber.h:doublevalue: 1 Hits
cpp:cctype:isupper: 1 Hits
objective-c:uikit.framework:uilabel.h:init: 1 Hits
objective-c:uikit.framework:uiimageview.h:init: 1 Hits
objective-c:uikit.framework:uilabel.h:initwithframe: 1 Hits
cpp:cmath:log: 1 Hits
objective-c:foundation.framework:nsvalue.h:valuewithcgsize: 1 Hits
java:io:printstream:append: 1 Hits
cpp:cmath:tan: 1 Hits
java:io:printstream:close: 1 Hits
objective-c:examples:rootviewcontroller: 1 Hits
cpp:control_structures:while: 1 Hits
objective-c:uikit.framework:uiimageview.h:initwithframe: 1 Hits
objective-c:foundation.framework:nsvalue.h:valuewithcgrect: 1 Hits
cpp:cmath:atan2: 1 Hits
cpp:cmath:modf: 1 Hits
cpp:cmath:log10: 1 Hits
cpp:cmath:tanh: 1 Hits
cpp:cmath:ldexp: 1 Hits
cpp:cmath:cos: 1 Hits
cpp:cmath:sqrt: 1 Hits
cpp:cmath:fabs: 1 Hits
objective-c:foundation.framework:nsfilemanager.h:defaultmanager: 1 Hits
cpp:cmath:fmod: 1 Hits
cpp:cmath:cosh: 1 Hits
cpp:cmath:asin: 1 Hits
c:wchar.h:wcscspn: 1 Hits
c:ctype.h:isascii: 1 Hits
c:math.h:asin: 1 Hits
c:stdlib.h:strtol: 1 Hits
c:stdlib.h:atexit: 1 Hits
c:wchar.h:swprintf: 1 Hits
c:stdio.h:feof: 1 Hits
c:control_structures:if: 1 Hits
c:math.h:pow: 1 Hits
c:math.h:fabs: 1 Hits
c:math.h:cosh: 1 Hits
c:math.h:ceil: 1 Hits
c:math.h:cos: 1 Hits
c:math.h:acos: 1 Hits
c:wchar.h:wcstok: 1 Hits
c:stdio.h:clearerr: 1 Hits
c:stdio.h:remove: 1 Hits
c:stdio.h:tmpfile: 1 Hits
c:stdio.h:rename: 1 Hits
c:control_structures:for: 1 Hits
c:stdlib.h:atol: 1 Hits
c:wchar.h:wscanf: 1 Hits
c:stdio.h:puts: 1 Hits
c:stdio.h:fsetpos: 1 Hits
c:stdio.h:putchar: 1 Hits
c:examples:ftp_scanner: 1 Hits
c:stdio.h:fflush: 1 Hits
c:stdlib.h:wcstombs: 1 Hits
c:control_structures:do: 1 Hits
c:ctype.h:isalnum: 1 Hits
c:stdlib.h:labs: 1 Hits
c:stdio.h:gets: 1 Hits
c:stdio.h:fprintf: 1 Hits
c:stdio.h:sscanf: 1 Hits
c:stdio.h:vscanf: 1 Hits
c:math.h:sqrt: 1 Hits
c:control_structures:continue: 1 Hits
c:datatypes:bool: 1 Hits
c:stdlib.h:atoi: 1 Hits
c:stdlib.h:srand: 1 Hits
c:math.h:modf: 1 Hits
c:wchar.h:wmemcpy: 1 Hits
c:math.h:log: 1 Hits
c:control_structures:goto: 1 Hits
c:stdio.h:sprintf: 1 Hits
c:stdlib.h:atof: 1 Hits
c:stdlib.h:abs: 1 Hits
c:preprocessor:undef: 1 Hits
c:stdlib.h:div: 1 Hits
c:string.h:strcoll: 1 Hits
c:stdio.h:bufsiz: 1 Hits
c:math.h:exp: 1 Hits
c:stdio.h:ungetc: 1 Hits
c:datatypes:char: 1 Hits
c:string.h:memcpy: 1 Hits
c:datatypes:int: 1 Hits
c:stdio.h:freopen: 1 Hits
c:stdio.h:file: 1 Hits
c:math.h:fmod: 1 Hits
c:wchar.h:wcscmp: 1 Hits
c:graphics.h:putpixel: 1 Hits
c:graphics.h:pieslice: 1 Hits
c:graphics.h:settextstyle: 1 Hits
c:graphics.h:outtextxy: 1 Hits
c:graphics.h:arc: 1 Hits
c:graphics.h:outtext: 1 Hits
c:graphics.h:rectangle: 1 Hits
c:graphics.h:setbkcolor: 1 Hits
c:stdio.h:scanf: 1 Hits
c:stdio.h:getchar: 1 Hits
c:graphics.h:cleardevice: 1 Hits
c:graphics.h:getbkcolor: 1 Hits
c:graphics.h:drawpoly: 1 Hits
c:graphics.h:ellipse: 1 Hits
c:graphics.h:bar3d: 1 Hits
c:graphics.h:setfillstyle: 1 Hits
c:graphics.h:bar: 1 Hits
c:graphics.h:fillpoly: 1 Hits
c:graphics.h:getimage: 1 Hits
c:graphics.h:getx: 1 Hits
c:graphics.h:setfillpattern: 1 Hits
c:graphics.h:getcolor: 1 Hits
c:graphics.h:putimage: 1 Hits
c:graphics.h:circle: 1 Hits
c:graphics.h:setcolor: 1 Hits
c:graphics.h:floodfill: 1 Hits
c:graphics.h:getaspectration: 1 Hits
c:conio.h:textbackground: 1 Hits
objective-c:examples:uiwebview_using_local_resources: 1 Hits
c:control_structures:switch: 1 Hits
java:util:scanner:nextshort: 1 Hits
java:io:printstream:format: 1 Hits
cpp:cmath:pow: 1 Hits
c:stdio.h:ferror: 1 Hits
cpp:control_structures:switch: 1 Hits
java:util:scanner:nextlong: 1 Hits
java:util:scanner:nextline: 1 Hits
java:lang:system:exit: 1 Hits
java:io:printstream:println: 1 Hits
java:lang:object:equals: 1 Hits
java:util:scanner:nextfloat: 1 Hits
java:util:scanner:nextint: 1 Hits
c:string.h:strncat: 1 Hits
c:keywords:file: 1 Hits
objective-c:foundation.framework:nsdictionary.h:count: 1 Hits
objective-c:foundation.framework:nsmutablearray.h:init: 1 Hits
objective-c:foundation.framework:nsdictionary.h:allkeys: 1 Hits
c:stdlib.h:mbtowc: 1 Hits
c:conio.h:getch: 1 Hits
objective-c:foundation.framework:nsarray.h:initwithobjects: 1 Hits
objective-c:foundation.framework:nsdictionary.h:init: 1 Hits
c:string.h:strcpy: 1 Hits
c:dos.h:gettime: 1 Hits
c:string.h:strlen: 1 Hits
objective-c:foundation.framework:nsarray.h:init: 1 Hits
objective-c:foundation.framework:nsdictionary.h:initwithobjectsandkeys: 1 Hits
c:graphics.h:moveto: 1 Hits
c:graphics.h:textwidth: 1 Hits
c:graphics.h:registermousehandler: 1 Hits
c:graphics.h:registerbgifont: 1 Hits
c:graphics.h:sector: 1 Hits
c:graphics.h:setactivepage: 1 Hits
c:graphics.h:setaspectratio: 1 Hits
c:graphics.h:setallpalette: 1 Hits
c:graphics.h:registerbgidriver: 1 Hits
c:graphics.h:moverel: 1 Hits
c:graphics.h:line: 1 Hits
c:graphics.h:installuserfont: 1 Hits
c:graphics.h:linerel: 1 Hits
c:graphics.h:lineto: 1 Hits
c:graphics.h:mousey: 1 Hits
c:graphics.h:setgraphbufsize: 1 Hits
c:graphics.h:setlinestyle: 1 Hits
cpp:datatypes:int: 1 Hits
c:graphics.h:getpixel: 1 Hits
cpp:datatypes:double: 1 Hits
cpp:datatypes:void: 1 Hits
cpp:define: 1 Hits
c:conio.h:gotoxy: 1 Hits
c:graphics.h:setwritemode: 1 Hits
c:graphics.h:setrgbpalette: 1 Hits
c:graphics.h:setpalette: 1 Hits
c:graphics.h:settextjustify: 1 Hits
c:graphics.h:setviewport: 1 Hits
c:graphics.h:setvisualpage: 1 Hits
c:graphics.h:imagesize: 1 Hits
c:graphics.h:graphresult: 1 Hits
c:graphics.h:getdrivername: 1 Hits
c:graphics.h:getarccoords: 1 Hits
c:graphics.h:getgraphmode: 1 Hits
c:graphics.h:getlinesettings: 1 Hits
c:graphics.h:getmaxheight: 1 Hits
c:graphics.h:getmaxcolor: 1 Hits
c:graphics.h:fillellipse: 1 Hits
c:graphics.h:delay: 1 Hits
c:graphics.h:getmouseclick: 1 Hits
c:graphics.h:mousex: 1 Hits
c:graphics.h:clearmouseclick: 1 Hits
c:graphics.h:clearviewport: 1 Hits
c:graphics.h:closegraph: 1 Hits
c:graphics.h:getmaxmode: 1 Hits
c:graphics.h:getmaxwidth: 1 Hits
c:graphics.h:getwindowwidth: 1 Hits
c:graphics.h:getwindowheight: 1 Hits
c:graphics.h:gety: 1 Hits
c:graphics.h:graphdefaults: 1 Hits
c:graphics.h:grapherrormsg: 1 Hits
c:graphics.h:getviewsettings: 1 Hits
c:graphics.h:gettextsettings: 1 Hits
c:graphics.h:getmaxy: 1 Hits
c:graphics.h:getmaxx: 1 Hits
c:graphics.h:getmoderange: 1 Hits
c:graphics.h:getpalette: 1 Hits
c:graphics.h:getpalettesize: 1 Hits
java:io:printstream:flush: 1 Hits
arduino:variable_scope_and_qualifiers:static: 1 Hits
c:wchar.h:wprintf: 1 Hits
c:string.h:memset: 1 Hits
arduino:external_interrupts:attachinterrupt: 1 Hits
arduino:advanced_io:shiftout: 1 Hits
c:control_structures:while: 1 Hits
arduino:arithmetic_operators:arithmetic: 1 Hits
c:wchar.h:wcsncat: 1 Hits
c:wchar.h:iswcntrl: 1 Hits
c:ctype.h:isblank: 1 Hits
c:wchar.h:towupper: 1 Hits
c:ctype.h:isgraph: 1 Hits
c:ctype.h:islower: 1 Hits
c:ctype.h:ispunct: 1 Hits
c:string.h:strerror: 1 Hits
c:string.h:strpbrk: 1 Hits
c:examples:port_scanner: 1 Hits
arduino:digital_io:digitalread: 1 Hits
c:wchar.h:wcsncpy: 1 Hits
c:wchar.h:wcsrtombs: 1 Hits
c:string.h:strtok: 1 Hits
c:string.h:strcat: 1 Hits
c:string.h:strxfrm: 1 Hits
c:string.h:strncpy: 1 Hits
c:string.h:strrchr: 1 Hits
c:string.h:strncmp: 1 Hits
c:string.h:strspn: 1 Hits
c:string.h:strstr: 1 Hits
c:wchar.h:towlower: 1 Hits
c:wchar.h:wmemset: 1 Hits
c:stdlib.h:wctomb: 1 Hits
c:conio.h:textcolor: 1 Hits
c:math.h:ldexp: 1 Hits
c:math.h:frexp: 1 Hits
objective-c:foundation.framework:nsnumber.h:charvalue: 1 Hits
c:math.h:tan: 1 Hits
c:conio.h:highvideo: 1 Hits
c:conio.h:gettextinfo: 1 Hits
c:conio.h:getpass: 1 Hits
c:time.h:asctime: 1 Hits
c:conio.h:gettext: 1 Hits
c:string.h:strcspn: 1 Hits
objective-c:foundation.framework:nsfilemanager.h:init: 1 Hits
c:ctype.h:isprint: 1 Hits
c:stdio.h:tmpnam: 1 Hits
c:wchar.h:wcsstr: 1 Hits
c:conio.h:window: 1 Hits
c:wchar.h:iswprint: 1 Hits
c:wchar.h:wcslen: 1 Hits
c:wchar.h:wcstoul: 1 Hits
c:wchar.h:ungetwc: 1 Hits
c:wchar.h:wcscat: 1 Hits
c:mysql:mysql.h:mysql_get_client_info: 1 Hits
c:ctype.h:isxdigit: 1 Hits
c:ctype.h:tolower: 1 Hits
c:ctype.h:isupper: 1 Hits
c:ctype.h:toupper: 1 Hits
objective-c:foundation.framework:nsnumber.h:floatvalue: 1 Hits
c:wchar.h:mbrlen: 1 Hits
c:wchar.h:wcscoll: 1 Hits
c:wchar.h:wcschr: 1 Hits
c:wchar.h:wcsftime: 1 Hits
c:wchar.h:wcsncmp: 1 Hits
c:wchar.h:wcsspn: 1 Hits
c:wchar.h:wcspbrk: 1 Hits
c:wchar.h:wcrtomb: 1 Hits
c:wchar.h:vwscanf: 1 Hits
c:wchar.h:swscanf: 1 Hits
c:wchar.h:putwchar: 1 Hits
c:wchar.h:vfwprintf: 1 Hits
c:wchar.h:vfwscanf: 1 Hits
c:wchar.h:vswscanf: 1 Hits
c:wchar.h:wcstod: 1 Hits
c:wchar.h:wcstold: 1 Hits
c:wchar.h:wmemchr: 1 Hits
c:wchar.h:wcwidth: 1 Hits
c:wchar.h:mbsinit: 1 Hits
cpp:time: 1 Hits
cpp:ctime: 1 Hits
c:wchar.h:wctype: 1 Hits
c:wchar.h:wctob: 1 Hits
c:wchar.h:wcstoull: 1 Hits
c:wchar.h:wcstoll: 1 Hits
c:wchar.h:wcswcs: 1 Hits
c:wchar.h:wcswidth: 1 Hits
c:wchar.h:wcsxfrm: 1 Hits
c:wchar.h:putwc: 1 Hits
c:wchar.h:mbsrtowcs: 1 Hits
c:wchar.h:wmemcmp: 1 Hits
objective-c:foundation.framework:nsnumber.h:intvalue: 1 Hits
c:stdio.h:fdopen: 1 Hits
c:mysql:mysql.h:mysql_get_client_version: 1 Hits
arduino:data_types:void: 1 Hits
c:wchar.h:vwprintf: 1 Hits
c:wchar.h:wmemmove: 1 Hits
c:wchar.h:wcstof: 1 Hits
c:wchar.h:fwprintf: 1 Hits
c:wchar.h:mbrtowc: 1 Hits
c:wchar.h:wcsrchr: 1 Hits
c:wchar.h:wcstol: 1 Hits
c:wchar.h:fwscanf: 1 Hits
arduino:due_only:analogreadresolution: 1 Hits
arduino:math:map: 1 Hits
c:wchar.h:iswlower: 1 Hits
c:wchar.h:iswgraph: 1 Hits
c:wchar.h:iswpunct: 1 Hits
c:wchar.h:iswupper: 1 Hits
c:wchar.h:iswxdigit: 1 Hits
c:wchar.h:iswdigit: 1 Hits
c:wchar.h:iswctype: 1 Hits
c:wchar.h:fwide: 1 Hits
c:math.h:tanh: 1 Hits
c:wchar.h:getwc: 1 Hits
c:wchar.h:iswalnum: 1 Hits
c:wchar.h:iswalpha: 1 Hits
c:conio.h:getche: 1 Hits

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War

Page Tools

  • Show pagesource
  • Old revisions
  • Backlinks
  • Back to top
Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 3.0 Unported
CC Attribution-Share Alike 3.0 Unported Driven by DokuWiki
Tweet this link
Impressum Datenschutz