~ubuntu-branches/ubuntu/precise/csound/precise

« back to all changes in this revision

Viewing changes to util1/csd_util/base64.c

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2012-04-19 09:26:46 UTC
  • mfrom: (3.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20120419092646-96xbj1n6atuqosk2
Tags: 1:5.17.6~dfsg-1
* New upstream release
 - Do not build the wiimote opcodes (we need wiiuse).
* Add new API function to symbols file
* Disable lua opcodes, they were broken. Requires OpenMP to be enabled.
* Backport fixes from upstream:
  - Link dssi4cs with dl. Backport
  - Fix building of CsoundAC

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
      exit(-1);
65
65
    }
66
66
    /* create new CSD tag and encode file */
67
 
    if (style) 
 
67
    if (style)
68
68
      fprintf(outfl, "<CsMidifileB>");
69
69
    else
70
70
      fprintf(outfl, "<CsFileB filename=\"%s\">", s);
71
71
    linepos = bitcnt = inval = 0;
72
72
    while (encode_byte(infile, outfl));
73
 
    if (style) 
 
73
    if (style)
74
74
      fprintf(outfl, "\b</CsMidifileB>\n");
75
75
    else
76
76
      fprintf(outfl, "\n</CsFileB>\n");
77
77
    /* close file */
78
78
    fclose(infile); infile = NULL;
79
79
}
80