View previous topic :: View next topic |
Author |
Message |
ThamanX n00b
Joined: 29 Nov 2005 Posts: 46 Location: AUT / Gmunden
|
Posted: Fri Dec 02, 2005 9:01 am Post subject: memcpy |
|
|
Hi !!
Ich hab da jetzt im Forum schon ein paar mal das Skript memcpy gesehen.
Doch jedes mal wenn ich es mit ./memcpy starten will, findet Gentoo nichts.
Wisst ihr, wo sich dieses Skript befindet bzw. wo ich es Downloaden kann ??
Lg Manuel |
|
Back to top |
|
|
Tuna Guru
Joined: 19 Jul 2002 Posts: 485 Location: Berlin
|
Posted: Fri Dec 02, 2005 9:47 am Post subject: |
|
|
|
|
Back to top |
|
|
ThamanX n00b
Joined: 29 Nov 2005 Posts: 46 Location: AUT / Gmunden
|
Posted: Fri Dec 02, 2005 9:55 am Post subject: |
|
|
|
|
Back to top |
|
|
SinoTech Advocate
Joined: 20 Mar 2004 Posts: 2579 Location: Neunkirchen / Saarland / Germany
|
Posted: Fri Dec 02, 2005 12:46 pm Post subject: |
|
|
Mit "./" startest du Programme die im aktuellen verzeichniss sind. Ist dort kein "memcpy", kannst du es auch so nicht starten.
Ansonsten such doch mal im Forum ein bisschen oder bei google.
Mfg
Sino |
|
Back to top |
|
|
_hephaistos_ Advocate
Joined: 07 Apr 2004 Posts: 2694 Location: salzburg, austria
|
Posted: Fri Dec 02, 2005 12:50 pm Post subject: |
|
|
SCNR: man memcpy! _________________ -l: signature: command not found |
|
Back to top |
|
|
ro Apprentice
Joined: 28 Mar 2003 Posts: 289
|
Posted: Fri Dec 02, 2005 12:53 pm Post subject: |
|
|
ich kenn zwar das skript nicht, aber: man memcpy. c-funktion _________________ Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. |
|
Back to top |
|
|
ruth Retired Dev
Joined: 07 Sep 2003 Posts: 640 Location: M / AN / BY / GER
|
Posted: Fri Dec 02, 2005 1:09 pm Post subject: |
|
|
Code: |
#include <stdio.h>
#include <string.h>
int main() {
char blah[] = "weisst du nicht, dass es verboten ist speicher raubzukopieren??? kauf dir welchen...";
char blubb[128]; /* macht halt spass so ;-) */
memcpy (blubb, blah, strlen(blah)+1);
fprintf(stdout, ">>> %s\n>>> %s\n", blah, blubb);
return(0);
}
|
_________________ "The compiler has tried twice to abort and cannot do so; therefore, compilation will now terminate."
-- IBM PL/I (F) error manual |
|
Back to top |
|
|
oscarwild l33t
Joined: 15 Jul 2003 Posts: 857 Location: Memmingen, Germany, Old Europe, Earth
|
Posted: Fri Dec 02, 2005 3:34 pm Post subject: Re: memcpy |
|
|
ThamanX wrote: | Ich hab da jetzt im Forum schon ein paar mal das Skript memcpy gesehen. |
Was auch immer das für ein Skript sein soll, kopiers Dir halt aus dem Forum auf Deine Platte, dann kannst Dus auch starten...
Aber erzähl mal, wozu Du das Skript brauchst! _________________ http://blog.selbsthilfenetzwerk-cannabis-medizin.de |
|
Back to top |
|
|
|