Search:

Type: Posts; User: Skvr

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    2,113

    Thanks cas That really didnīt come up in my...

    Thanks cas
    That really didnīt come up in my mind...
  2. Replies
    3
    Views
    2,113

    Returning string from char *function()

    I am wondering why i have to use "helper" pointer a to get the s return right value.
    Why i cant do it directly with s?


    char *copyn(char *s, const char *t, size_t n){
    char *a;
    a=s;
    ...
  3. Replies
    13
    Views
    1,637

    Is there any other reason why not to realloc...

    Is there any other reason why not to realloc every single char than optimization? I can imagine it would be resource consuming if this would be done in some RealWorld application, but because this is...
  4. Replies
    13
    Views
    1,637

    This is not ment to be copy paste code. I put it...

    This is not ment to be copy paste code. I put it on this forum so you could see and examine how things are done. And i think anyway that this aint easy for understand without real example. I dont...
  5. Replies
    13
    Views
    1,637

    Yes Laserlight is right, just havent never used...

    Yes Laserlight is right, just havent never used <conio.h> myself because i have thought it is Windows platform & C++ thing.I should read the links i post. Im little bit lost anyway what you trying...
  6. Replies
    13
    Views
    1,637

    You are coding obviously with C. Why are you...

    You are coding obviously with C. Why are you including one of the C++ header file?
    More information: http://en.wikipedia.org/wiki/Conio.h

    return q;
    free(q);

    You cant free after return....
  7. Thread: Crypto API

    by Skvr
    Replies
    1
    Views
    3,260

    tfm = crypto_alloc_tfm("blowfish",...

    tfm = crypto_alloc_tfm("blowfish", CRYPTO_TFM_MODE_ECB); // initialize with blowfish


    Havenīt tested this or nothing just throwing a couple of thoughts in the air.

    Is tfm really initialized...
  8. "Hey dude, could you build free house for me?"...

    "Hey dude, could you build free house for me?" Pointless to even ask, when you know the answer or maybe there really is a santa claus out there...
  9. Replies
    4
    Views
    1,233

    You should not ask, do you have / can you give /...

    You should not ask, do you have / can you give / can you do for me etc, questions here. Adding please x1000000 in your message wont help you getting more helpers or "ready codes" given you.
    ...
  10. Replies
    2
    Views
    1,326

    Few more things. Choosing 4 dont quit because...

    Few more things.

    Choosing 4 dont quit because logic error.
    Include string.h if not done already.
    You dont need type cast malloc and realloc in C: (1)
    Are you sure about this: (2) ?:)


    (1)...
  11. Replies
    2
    Views
    1,326

    You should _not_ post code that is this long in...

    You should _not_ post code that is this long in forums, use http://pastebin.com etc.

    I didnt read the whole code just looked there and here. This caught in my eye:


    if(start_ptr==NULL){//...
  12. Replies
    14
    Views
    3,070

    He asked how to do that in Mac. Are there MFC,...

    He asked how to do that in Mac. Are there MFC, Visual C++ etc for Mac too?.
  13. Replies
    14
    Views
    3,070

    Im not sure what you were asking. Do you want to...

    Im not sure what you were asking. Do you want to do GUIīs in Mac system. If yes, i would highly suggest you to get familiar with Gtk+.

    Good place to start : http://www.gtk.org/documentation.html...
  14. Replies
    2
    Views
    1,547

    This definately aint going to tell everything...

    This definately aint going to tell everything about networking, but at least for me it was very helpfull when i started learning about network programming, take a look :...
Results 1 to 14 of 14